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
30
31
32
33
34
35
36
37
|
import qbs.base 1.0
import "../../../../qbs/defaults.js" as Defaults
DynamicLibrary {
name: "styleplugin"
Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ["core", "widgets", "declarative", "script"] }
cpp.defines: Defaults.defines(qbs)
files: [
"qdeclarativefolderlistmodel.cpp",
"qdeclarativefolderlistmodel.h",
"qrangemodel.cpp",
"qrangemodel.h",
"qrangemodel_p.h",
"qstyleitem.cpp",
"qstyleitem.h",
"qstyleplugin.cpp",
"qstyleplugin.h",
"qtmenu.cpp",
"qtmenu.h",
"qtmenubar.cpp",
"qtmenubar.h",
"qtmenuitem.cpp",
"qtmenuitem.h",
"qwheelarea.cpp",
"qwheelarea.h",
]
Group {
fileTagsFilter: product.type
qbs.install: true
qbs.installDir: project.ide_library_path + "/qtcomponents/plugin"
}
}
|