-
Notifications
You must be signed in to change notification settings - Fork 9
/
cmakeprojectmanager.qbs
109 lines (103 loc) · 3.07 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
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
import qbs 1.0
QtcPlugin {
name: "CMakeProjectManager2"
Depends { name: "Qt.widgets" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "CppEditor" }
Depends { name: "QmlJS" }
Depends { name: "ProjectExplorer" }
Depends { name: "TextEditor" }
Depends { name: "QtSupport" }
files: [
"builddirparameters.cpp",
"builddirparameters.h",
"cmake_global.h",
"cmakeabstractprocessstep.cpp",
"cmakeabstractprocessstep.h",
"cmakebuildconfiguration.cpp",
"cmakebuildconfiguration.h",
"cmakebuildstep.cpp",
"cmakebuildstep.h",
"cmakebuildsystem.cpp",
"cmakebuildsystem.h",
"cmakebuildtarget.h",
"cmakeconfigitem.cpp",
"cmakeconfigitem.h",
"cmakeeditor.cpp",
"cmakeeditor.h",
"cmakefilecompletionassist.cpp",
"cmakefilecompletionassist.h",
"cmakeformatter.cpp",
"cmakeformatter.h",
"cmakeinstallstep.cpp",
"cmakeinstallstep.h",
"cmakekitaspect.h",
"cmakekitaspect.cpp",
"cmakelocatorfilter.cpp",
"cmakelocatorfilter.h",
"cmakeparser.cpp",
"cmakeparser.h",
"cmakeprocess.cpp",
"cmakeprocess.h",
"cmakeproject.cpp",
"cmakeproject.h",
"cmakeproject.qrc",
"cmakeprojectimporter.cpp",
"cmakeprojectimporter.h",
"cmakeprojectconstants.h",
"cmakeprojectmanager.cpp",
"cmakeprojectmanager.h",
"cmakeprojectmanagertr.h",
"cmakeprojectnodes.cpp",
"cmakeprojectnodes.h",
"cmakeprojectplugin.cpp",
"cmakeprojectplugin.h",
"cmaketool.cpp",
"cmaketool.h",
"cmaketoolmanager.cpp",
"cmaketoolmanager.h",
"cmaketoolsettingsaccessor.cpp",
"cmaketoolsettingsaccessor.h",
"cmakesettingspage.h",
"cmakesettingspage.cpp",
"cmakeindenter.h",
"cmakeindenter.cpp",
"cmakeautocompleter.h",
"cmakeautocompleter.cpp",
"cmakespecificsettings.h",
"cmakespecificsettings.cpp",
"configmodel.cpp",
"configmodel.h",
"configmodelitemdelegate.cpp",
"configmodelitemdelegate.h",
"fileapidataextractor.cpp",
"fileapidataextractor.h",
"fileapiparser.cpp",
"fileapiparser.h",
"fileapireader.cpp",
"fileapireader.h",
"presetsparser.cpp",
"presetsparser.h",
"presetsmacros.cpp",
"presetsmacros.h",
"projecttreehelper.cpp",
"projecttreehelper.h",
"simplefileapireader.cpp",
"simplefileapireader.h"
]
Group {
name: "3rdparty"
cpp.includePaths: base.concat("3rdparty/cmake")
prefix: "3rdparty/"
files: [
"cmake/cmListFileCache.cxx",
"cmake/cmListFileCache.h",
"cmake/cmListFileLexer.cxx",
"cmake/cmListFileLexer.h",
"cmake/cmStandardLexer.h",
"rstparser/rstparser.cc",
"rstparser/rstparser.h"
]
}
}