summaryrefslogtreecommitdiff
path: root/tests/auto/language/testdata/subdir2/exports-mylib2.qbs
blob: a0cec6eb03204d408f334dabed66b0d9eba98ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import qbs

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