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