aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/subdir/exports-mylib.qbs
blob: 51e5b6831a268232c1e6924841b88c88e8b8136b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import qbs

StaticLibrary {
    name: "mylib"
    Depends { name: "dummy" }
    dummy.defines: ["BUILD_" + product.name.toUpperCase()]
    property string definePrefix: "USE_"
    property path aPath: "."
    dummy.somePath: aPath
    Export {
        Depends { name: "dummy" }
        Depends { name: "mylib2" }
        dummy.defines: [product.definePrefix + product.name.toUpperCase()]
        dummy.includePaths: ["./lib"]
        dummy.somePath: product.aPath
    }
}