blob: 290ffdff5d8ffd215b12090c6e9deea46a719a71 (
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: [
"QMAKE_AS_LIBRARY",
"PROPARSER_THREAD_SAFE",
"PROEVALUATOR_THREAD_SAFE",
"PROEVALUATOR_CUMULATIVE",
"PROEVALUATOR_SETENV",
]
cpp.includePaths: exportingProduct.sourceDirectory + "/.."
}
}
|