aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/restored-warnings/restored-warnings.qbs
blob: bbdfbeadb1988e121bee6d30fd1278d3c6b84fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import qbs.Process 1.5

CppApplication {
    name: "theProduct"

    property bool moreFiles: false
    cpp.blubb: true

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