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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "QmlProjectManager"
Depends { name: "cpp" }
Depends { name: "Qt"; submodules: ["widgets", "declarative"] }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "TextEditor" }
Depends { name: "QmlJSEditor" }
Depends { name: "QmlJS" }
Depends { name: "Debugger" }
Depends { name: "QtSupport" }
Depends { name: "app_version_header" }
cpp.defines: base.concat("QMLPROJECTMANAGER_LIBRARY")
files: [
"qmlapp.cpp",
"qmlapp.h",
"qmlapplicationwizard.cpp",
"qmlapplicationwizard.h",
"QmlProject.mimetypes.xml",
"qmlproject.cpp",
"qmlproject.h",
"qmlproject.qrc",
"qmlprojectconstants.h",
"qmlprojectfile.cpp",
"qmlprojectfile.h",
"qmlprojectmanager.cpp",
"qmlprojectmanager.h",
"qmlprojectmanager_global.h",
"qmlprojectmanagerconstants.h",
"qmlprojectnodes.cpp",
"qmlprojectnodes.h",
"qmlprojectplugin.cpp",
"qmlprojectplugin.h",
"qmlprojectrunconfiguration.cpp",
"qmlprojectrunconfiguration.h",
"qmlprojectrunconfigurationfactory.cpp",
"qmlprojectrunconfigurationfactory.h",
"qmlprojectrunconfigurationwidget.cpp",
"qmlprojectrunconfigurationwidget.h",
"qmlprojectruncontrol.cpp",
"qmlprojectruncontrol.h",
"fileformat/filefilteritems.cpp",
"fileformat/filefilteritems.h",
"fileformat/qmlprojectfileformat.cpp",
"fileformat/qmlprojectfileformat.h",
"fileformat/qmlprojectitem.cpp",
"fileformat/qmlprojectitem.h",
]
}
|