summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata-providers/providers-properties/providers-properties.qbs
blob: 258a973fad5a09cdf126e6c966b50cc7aa6d88a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Product {
    qbsModuleProviders: ["provider_a", "provider_b"]
    name: "p"
    Depends { name: "qbsmetatestmodule" }
    Depends { name: "qbsothermodule" }
    moduleProviders.provider_a.someProp: "someValue"
    property bool dummy: {
        console.info("p.qbsmetatestmodule.listProp: "
                + JSON.stringify(qbsmetatestmodule.listProp));
        console.info("p.qbsothermodule.listProp: " + JSON.stringify(qbsothermodule.listProp));
    }
}