aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/conflicting-property-values/conflicting-property-values.qbs
blob: 23b6ee5a33bdb4ad589f43c9b0692c2486887def (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
32
33
34
35
36
37
38
39
40
41
Project {
    Product {
        name: "low"
        Export { property string prop: "low"; property string prop2: "low" }
    }
    Product {
        name: "higher1"
        Export { Depends { name: "low" } low.prop: "higher1" }
    }
    Product {
        name: "higher2"
        Export { Depends { name: "low" } low.prop: "higher2" }
    }
    Product {
        name: "highest1"
        Export {
            Depends { name: "low" }
            Depends { name: "higher1" }
            Depends { name: "higher2" }
            low.prop: "highest1"
            low.prop2: "highest"
        }
    }
    Product {
        name: "highest2"
        Export {
            Depends { name: "low" }
            Depends { name: "higher1" }
            Depends { name: "higher2" }
            low.prop: "highest2"
            low.prop2: "highest"
        }
    }
    Product {
        name: "toplevel"
        Depends { name: "highest1" }
        Depends { name: "highest2" }
        low.prop: name
        property bool dummy: { console.info("final prop value: " + low.prop); }
    }
}