aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/dependency_cycle3a.qbs
blob: a0660c0747758cd83723a9f43433e71ec9b0b51b (plain)
1
2
3
4
5
6
7
8
9
10
11
Project {
    Product {
        name: "B"
        Depends { productTypes: ["a"] }
    }
    Product {
        type: ["a"]
        name: "A"
        Depends { name: "B" }
    }
}