aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/overrideProjectProperties/helper_lib.qbs
blob: c7eab99e23971d628bff309f43f6e7448cfb1bf8 (plain)
1
2
3
4
5
6
7
8
9
DynamicLibrary {
    name: "helperLib"
    files: "helperlib.cpp"
    Depends { name: "cpp" }
    Properties {
        condition: qbs.targetOS.includes("darwin")
        bundle.isBundle: false
    }
}