aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/fileDependencies/fileDependencies.qbs
blob: 49f413807452deda588c4049c6a6ac1644f7a559 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Project {
    Product {
        type: "application"
        consoleApplication: true
        name: "myapp"
        Depends { name: "cpp" }
        cpp.includePaths: ["awesomelib"]
        files: ["src/narf.h", "src/narf.cpp", "src/zort.cpp"]
        //     Group {
        //     fileTagsFilter: product.type
        //     qbs.install: true
        // }
    }
}