blob: dd9ce7cc64b24a553f24a8e28147fb0e995fb48b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import qbs
Product {
name: "ProParser"
condition: true
Export {
Depends { name: "cpp" }
cpp.defines: base.concat([
"QMAKE_AS_LIBRARY",
"PROPARSER_THREAD_SAFE",
"PROEVALUATOR_THREAD_SAFE",
"PROEVALUATOR_CUMULATIVE",
"PROEVALUATOR_SETENV",
])
cpp.includePaths: base.concat([exportingProduct.sourceDirectory + "/.."])
}
}
|