aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/fileDependencies/fileDependencies.qbs
blob: e99e0932c396e7c34a4b74e5e38c97e06aba51d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs 1.0

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
        // }
    }
}