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
|
import qbs.base 1.0
import QtcPlugin
QtcPlugin {
name: "QmlProjectManager"
Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "QmlJSTools" }
Depends { name: "QtSupport" }
Group {
name: "General"
files: [
"qmlapp.cpp", "qmlapp.h",
"qmlapplicationwizard.cpp", "qmlapplicationwizard.h",
"qmlapplicationwizardpages.cpp", "qmlapplicationwizardpages.h",
"qmlproject.cpp", "qmlproject.h",
"qmlproject.qrc",
"qmlprojectconstants.h",
"qmlprojectenvironmentaspect.cpp", "qmlprojectenvironmentaspect.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"
]
}
Group {
name: "File Format"
prefix: "fileformat/"
files: [
"filefilteritems.cpp", "filefilteritems.h",
"qmlprojectfileformat.cpp", "qmlprojectfileformat.h",
"qmlprojectitem.cpp", "qmlprojectitem.h",
]
}
}
|