aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/properties-in-export-items/properties-in-export-items.qbs
blob: a13578f953ed3c9180b63bad16e9ef9d51737ad0 (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
26
27
28
29
30
31
Project {
    minimumQbsVersion: "1.6"

    Product {
        name: "dep"
        Export {
            property string theDefine: ""
            Depends { name: "cpp" }
            cpp.defines: [theDefine]
        }
    }

    Application {
        name: "p1"
        consoleApplication: true
        Depends { name: "dep" }
        dep.theDefine: "P1"
        cpp.minimumMacosVersion: "10.9"
        files: ["main1.cpp"]
    }
    Application {
        name: "p2"
        consoleApplication: true
        Depends { name: "dep" }
        cpp.minimumMacosVersion: "10.9"
        Group {
            dep.theDefine: "P2"
            files: ["main2.cpp"]
        }
    }
}