aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/remove-duplicate-libs/MyStaticLib.qbs
blob: bd79759eba4c03e3cf89eabf0ec25f84d687e953 (plain)
1
2
3
4
5
6
7
8
9
10
StaticLibrary {
    Properties {
        condition: isForDarwin
        bundle.isBundle: false
    }

    Depends { name: "cpp" }
    files: name + ".c"
    destinationDirectory: project.libDir
}