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