blob: 99726f7d68d492663d7c631c897678b5d8bc7c8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import qbs
StaticLibrary {
name: "qtcjson"
Depends { name: "cpp" }
cpp.cxxLanguageVersion: "c++11"
cpp.minimumMacosVersion: project.minimumMacosVersion
files: [
"json.cpp",
"json.h",
]
Export {
Depends { name: "cpp" }
cpp.includePaths: [exportingProduct.sourceDirectory]
}
}
|