summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/broken-dependency-cycle2.qbs
blob: 69a6e4f85db7dd5a6a9c92141abcb3169d12032e (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: "p3"
        Depends { name: "p1" }
    }
    Product {
        name: "p2"
        Depends { name: "p1" }
        p1.c: false
    }
}