summaryrefslogtreecommitdiff
path: root/tests/auto/api/testdata/project-properties-by-name/project-properties-by-name.qbs
blob: b90068f87e65d04ad07045f85dda09b6bdee7f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import qbs

Project {
    name: "toplevel"
    property stringList theDefines: []
    Project {
        name: "subproject1"
        CppApplication {
            name: "subproduct1"
            files: ["main1.cpp"]
            cpp.defines: project.theDefines
        }
    }
    Project {
        name: "subproject2"
        CppApplication {
            name: "subproduct2"
            files: ["main2.cpp"]
            cpp.defines: project.theDefines
        }
    }
}