aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/transitive-invalid-dependencies/transitive-invalid-dependencies.qbs
blob: 209b1e47d4069c02136c84e1702d0891f7a9c8db (plain)
1
2
3
4
5
6
7
8
9
10
11
Product {
    property bool modulePresent: {
        console.info("b.present = " + b.present);
        console.info("c.present = " + c.present);
        console.info("d.present = " + d.present);
    }

    Depends { name: "b"; required: false }
    Depends { name: "c"; required: false }
    Depends { name: "d"; required: false }
}