aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/product-in-exported-module/product-in-exported-module.qbs
blob: f978aa778305e361ad22daaac8f67e3fbd130686 (plain)
1
2
3
4
5
6
7
8
9
10
Project {
    Product {
        name: "p"
        Depends { name: "dep" }
    }
    Product {
        name: "dep"
        Export { Depends { name: "m" } }
    }
}