aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/trackAddFile/after/trackAddFile.qbs
blob: 113f4431632d7eab43caf542baba04c2bb66fab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Project {
    Product {
        condition: {
            var result = qbs.targetPlatform === qbs.hostPlatform;
            if (!result)
                console.info("targetPlatform differs from hostPlatform");
            return result;
        }
        name: 'someapp'
        type: 'application'
        consoleApplication: true
        Depends { name: 'cpp' }
        files: [
            "main.cpp",
            "narf.h", "narf.cpp",
            "zort.h", "zort.cpp"
        ]
    }
}