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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
import qbs 1.0
import QtcPlugin
QtcPlugin {
name: "QmakeProjectManager"
Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "Aggregation" }
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "QtSupport" }
Depends { name: "CppTools" }
Depends { name: "TextEditor" }
Depends { name: "QmlJSTools" }
Depends { name: "ResourceEditor" }
pluginRecommends: [
"Designer"
]
Group {
name: "General"
files: [
"addlibrarywizard.cpp", "addlibrarywizard.h",
"desktopqmakerunconfiguration.cpp", "desktopqmakerunconfiguration.h",
"externaleditors.cpp", "externaleditors.h",
"findqmakeprofiles.cpp", "findqmakeprofiles.h",
"librarydetailscontroller.cpp", "librarydetailscontroller.h",
"librarydetailswidget.ui",
"makestep.cpp", "makestep.h", "makestep.ui",
"profilecompletionassist.cpp", "profilecompletionassist.h",
"profileeditor.cpp", "profileeditor.h",
"profileeditorfactory.cpp", "profileeditorfactory.h",
"profilehighlighter.cpp", "profilehighlighter.h",
"profilehighlighterfactory.cpp", "profilehighlighterfactory.h",
"profilehoverhandler.cpp", "profilehoverhandler.h",
"qmakebuildinfo.h",
"qmakeparser.cpp", "qmakeparser.h",
"qmakekitconfigwidget.cpp", "qmakekitconfigwidget.h",
"qmakekitinformation.cpp", "qmakekitinformation.h",
"qmakeparser.cpp", "qmakeparser.h",
"qmakeprojectimporter.cpp", "qmakeprojectimporter.h",
"qmakerunconfigurationfactory.cpp", "qmakerunconfigurationfactory.h",
"qmakestep.cpp", "qmakestep.h", "qmakestep.ui",
"qmakebuildconfiguration.cpp", "qmakebuildconfiguration.h",
"qmakenodes.cpp", "qmakenodes.h",
"qmakeproject.cpp", "qmakeproject.h",
"qmakeprojectconfigwidget.cpp", "qmakeprojectconfigwidget.h", "qmakeprojectconfigwidget.ui",
"qmakeprojectmanager.cpp", "qmakeprojectmanager.h",
"qmakeprojectmanager.qrc",
"qmakeprojectmanager_global.h",
"qmakeprojectmanagerconstants.h",
"qmakeprojectmanagerplugin.cpp", "qmakeprojectmanagerplugin.h",
"qtmodulesinfo.cpp", "qtmodulesinfo.h",
]
}
Group {
name: "Custom Widget Wizard"
prefix: "customwidgetwizard/"
files: [
"classdefinition.cpp", "classdefinition.h", "classdefinition.ui",
"classlist.cpp", "classlist.h",
"customwidgetpluginwizardpage.cpp", "customwidgetpluginwizardpage.h", "customwidgetpluginwizardpage.ui",
"customwidgetwidgetswizardpage.cpp", "customwidgetwidgetswizardpage.h", "customwidgetwidgetswizardpage.ui",
"customwidgetwizard.cpp", "customwidgetwizard.h",
"customwidgetwizarddialog.cpp", "customwidgetwizarddialog.h",
"filenamingparameters.h",
"plugingenerator.cpp", "plugingenerator.h",
"pluginoptions.h"
]
}
Group {
name: "Images"
prefix: "images/"
files: [
"headers.png",
"run_qmake.png",
"run_qmake_small.png",
"sources.png",
"unknown.png",
]
}
Group {
name: "Wizards"
prefix: "wizards/"
files: [
"abstractmobileapp.cpp", "abstractmobileapp.h",
"abstractmobileappwizard.cpp", "abstractmobileappwizard.h",
"consoleappwizard.cpp", "consoleappwizard.h",
"consoleappwizarddialog.cpp", "consoleappwizarddialog.h",
"emptyprojectwizard.cpp", "emptyprojectwizard.h",
"emptyprojectwizarddialog.cpp", "emptyprojectwizarddialog.h",
"filespage.cpp", "filespage.h",
"guiappwizard.cpp", "guiappwizard.h",
"guiappwizarddialog.cpp", "guiappwizarddialog.h",
"libraryparameters.cpp", "libraryparameters.h",
"librarywizard.cpp", "librarywizard.h",
"librarywizarddialog.cpp", "librarywizarddialog.h",
"modulespage.cpp", "modulespage.h",
"qtprojectparameters.cpp", "qtprojectparameters.h",
"qtquickapp.cpp", "qtquickapp.h",
"qtquickappwizard.cpp", "qtquickappwizard.h",
"qtquickappwizardpages.cpp", "qtquickappwizardpages.h",
"qtwizard.cpp", "qtwizard.h",
"subdirsprojectwizard.cpp", "subdirsprojectwizard.h",
"subdirsprojectwizarddialog.cpp", "subdirsprojectwizarddialog.h",
"testwizard.cpp", "testwizard.h",
"testwizarddialog.cpp", "testwizarddialog.h",
"testwizardpage.cpp", "testwizardpage.h",
"testwizardpage.ui",
"wizards.qrc"
]
}
Group {
name: "Wizard Images"
prefix: "wizards/images/"
files: [
"console.png",
"gui.png",
"lib.png",
"qtquickapp.png",
]
}
}
|