blob: abd23f95c86e7b6ab90ccd98b65b6c0675bd3e7c (
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.base 1.0
import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary {
name: "LanguageUtils"
cpp.includePaths: [
".",
"..",
"../3rdparty/cplusplus"
]
cpp.defines: base.concat([
"QT_CREATOR",
"LANGUAGEUTILS_BUILD_DIR"
])
cpp.optimization: "fast"
Depends { name: "cpp" }
Depends { name: "Qt.core" }
files: [
"languageutils_global.h",
"fakemetaobject.h",
"componentversion.h",
"fakemetaobject.cpp",
"componentversion.cpp"
]
}
|