summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/broken-dependency-cycle1.qbs
blob: aef4eb58894841a398347c5460aa064462237431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Project {
    Product {
        name: "p1"
        Export {
            property bool c: true
            Depends { name: "p2"; condition: c }
        }
    }
    Product {
        name: "p2"
        Depends { name: "p1" }
        p1.c: false
    }
    Product {
        name: "p3"
        Depends { name: "p1" }
    }
}