aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/overrideProjectProperties/helper_lib.qbs
blob: b26b0f31f5720d360e2237e2b7c111d0f6fe7081 (plain)
1
2
3
4
5
6
7
8
9
10
11
import qbs

DynamicLibrary {
    name: "helperLib"
    files: "helperlib.cpp"
    Depends { name: "cpp" }
    Properties {
        condition: qbs.targetOS.contains("darwin")
        bundle.isBundle: false
    }
}