blob: ef4e80c1b3d7a33ff7ab9ec4e58b9460edcbaa4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import qbs
CppApplication {
condition: {
var result = qbs.targetPlatform === qbs.hostPlatform;
if (!result)
console.info("targetPlatform differs from hostPlatform");
return result && hasProtobuf;
}
name: "app"
consoleApplication: true
protobuf.cpp.importPaths: [sourceDirectory]
cpp.cxxLanguageVersion: "c++11"
cpp.minimumMacosVersion: "10.8"
Depends { name: "protobuf.cpp"; required: false }
property bool hasProtobuf: {
console.info("has protobuf: " + protobuf.cpp.present);
return protobuf.cpp.present;
}
files: [
"import.proto",
"import-main.cpp",
"subdir/myenum.proto",
]
}
|