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

Project {
    CppApplication {
        name: "theProduct"

        cpp.blubb: true

        files: ["file.cpp", "main.cpp"]
    }

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

    Product {
        name: "aThirdProduct"
        property bool moreFiles: false
        Group {
            condition: moreFiles
            files: ["blubb.txt"]
        }
    }
}