forked from h4tr3d/cmakeprojectmanager2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcmakeprojectmanager.qbs
81 lines (76 loc) · 2.19 KB
/
cmakeprojectmanager.qbs
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
import qbs 1.0
QtcPlugin {
name: "CMakeProjectManager2"
Depends { name: "Qt.widgets" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "CppTools" }
Depends { name: "QmlJS" }
Depends { name: "ProjectExplorer" }
Depends { name: "TextEditor" }
Depends { name: "QtSupport" }
pluginRecommends: [
"Designer"
]
files: [
"builddirmanager.cpp",
"builddirmanager.h",
"cmake_global.h",
"cmakebuildconfiguration.cpp",
"cmakebuildconfiguration.h",
"cmakebuildinfo.h",
"cmakebuildsettingswidget.cpp",
"cmakebuildsettingswidget.h",
"cmakebuildstep.cpp",
"cmakebuildstep.h",
"cmakecbpparser.cpp",
"cmakecbpparser.h",
"cmakeconfigitem.cpp",
"cmakeconfigitem.h",
"cmakeeditor.cpp",
"cmakeeditor.h",
"cmakefile.cpp",
"cmakefile.h",
"cmakefilecompletionassist.cpp",
"cmakefilecompletionassist.h",
"cmakekitconfigwidget.h",
"cmakekitconfigwidget.cpp",
"cmakekitinformation.h",
"cmakekitinformation.cpp",
"cmakelocatorfilter.cpp",
"cmakelocatorfilter.h",
"cmakeparser.cpp",
"cmakeparser.h",
"cmakeproject.cpp",
"cmakeproject.h",
"cmakeproject.qrc",
"cmakeprojectconstants.h",
"cmakeprojectmanager.cpp",
"cmakeprojectmanager.h",
"cmakeprojectnodes.cpp",
"cmakeprojectnodes.h",
"cmakeprojectplugin.cpp",
"cmakeprojectplugin.h",
"cmakerunconfiguration.cpp",
"cmakerunconfiguration.h",
"cmaketool.cpp",
"cmaketool.h",
"cmaketoolmanager.cpp",
"cmaketoolmanager.h",
"cmakesettingspage.h",
"cmakesettingspage.cpp",
"cmakesnippetprovider.cpp",
"cmakesnippetprovider.h",
"cmakeindenter.h",
"cmakeindenter.cpp",
"cmakeparamsext.cpp"
"cmakeautocompleter.h",
"cmakeautocompleter.cpp",
"configmodel.cpp",
"configmodel.h",
"configmodelitemdelegate.cpp",
"configmodelitemdelegate.h",
"treebuilder.cpp",
"treebuilder.h"
]
}