summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/static-lib-without-sources/static-lib-without-sources.qbs
blob: 54ec5e230564b7429f1ec71435ebe5392fba83d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Project {
StaticLibrary {
    name: "a"
    Depends { name: "cpp" }
    files: ["lib.cpp"]
    }

Product {
    type: qbs.targetOS.includes("darwin") ? undefined : ["staticlibrary"]
    name: "b"
    Depends { name: "cpp" }
    Depends { name: "a" }
}
}