2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "CMakeProjectManager"
|
|
|
|
|
|
2012-06-19 15:36:27 +08:00
|
|
|
Depends { name: "Qt.widgets" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "CppTools" }
|
2012-02-27 21:09:42 +02:00
|
|
|
Depends { name: "CPlusPlus" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "Locator" }
|
2012-05-16 16:24:16 +02:00
|
|
|
Depends { name: "QtSupport" }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"CMakeProject.mimetypes.xml",
|
|
|
|
|
"cmakebuildconfiguration.cpp",
|
|
|
|
|
"cmakebuildconfiguration.h",
|
|
|
|
|
"cmakeeditor.cpp",
|
|
|
|
|
"cmakeeditor.h",
|
|
|
|
|
"cmakeeditorfactory.cpp",
|
|
|
|
|
"cmakeeditorfactory.h",
|
2012-09-06 22:38:25 +08:00
|
|
|
"cmakefilecompletionassist.cpp",
|
|
|
|
|
"cmakefilecompletionassist.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"cmakehighlighter.cpp",
|
|
|
|
|
"cmakehighlighter.h",
|
|
|
|
|
"cmakelocatorfilter.cpp",
|
|
|
|
|
"cmakelocatorfilter.h",
|
|
|
|
|
"cmakeopenprojectwizard.cpp",
|
|
|
|
|
"cmakeopenprojectwizard.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",
|
|
|
|
|
"cmakeuicodemodelsupport.cpp",
|
|
|
|
|
"cmakeuicodemodelsupport.h",
|
2012-09-06 22:38:25 +08:00
|
|
|
"cmakevalidator.cpp",
|
|
|
|
|
"cmakevalidator.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"makestep.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"makestep.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|