aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
blob: f6a68f27c276a04a6656eb154ddefadbb34fa954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import qbs.Process 1.5

Project {
    CppApplication {
        name: "theProduct"

        property bool moreFiles: false
        cpp.blubb: true

        files: ["file.cpp", "main.cpp"]
        Group {
            condition: moreFiles
            files: ["blubb.cpp"]
        }
    }

    Product {
        name: "theOtherProduct"
        property bool dummy: { throw "this one comes from a thread"; }
    }
}