add qbs files

Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Joerg Bornemann
2012-02-09 14:30:09 +01:00
committed by hjk
parent 74da217204
commit ff92cdec43
60 changed files with 7252 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
import qbs.base 1.0
import "../QtcPlugin.qbs" as QtcPlugin
QtcPlugin {
name: "QmlProjectManager"
Depends { name: "qt"; submodules: ['gui', 'declarative'] }
Depends { name: "utils" }
Depends { name: "extensionsystem" }
Depends { name: "aggregation" }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "TextEditor" }
Depends { name: "QmlJSEditor" }
Depends { name: "QmlJS" }
Depends { name: "Debugger" }
Depends { name: "QtSupport" }
Depends { name: "cpp" }
cpp.includePaths: [
"..",
"../../libs",
buildDirectory
]
files: [
"fileformat/qmlprojectitem.h",
"fileformat/filefilteritems.h",
"fileformat/qmlprojectfileformat.h",
"qmlproject.h",
"qmlprojectplugin.h",
"qmlprojectmanager.h",
"qmlprojectconstants.h",
"qmlprojectnodes.h",
"qmlprojectfile.h",
"qmlprojectruncontrol.h",
"qmlprojectrunconfiguration.h",
"qmlprojectrunconfigurationfactory.h",
"qmlprojectapplicationwizard.h",
"qmlprojectmanager_global.h",
"qmlprojectmanagerconstants.h",
"qmlprojecttarget.h",
"qmlprojectrunconfigurationwidget.h",
"fileformat/qmlprojectitem.cpp",
"fileformat/filefilteritems.cpp",
"fileformat/qmlprojectfileformat.cpp",
"qmlproject.cpp",
"qmlprojectplugin.cpp",
"qmlprojectmanager.cpp",
"qmlprojectnodes.cpp",
"qmlprojectfile.cpp",
"qmlprojectruncontrol.cpp",
"qmlprojectrunconfiguration.cpp",
"qmlprojectrunconfigurationfactory.cpp",
"qmlprojectapplicationwizard.cpp",
"qmlprojecttarget.cpp",
"qmlprojectrunconfigurationwidget.cpp",
"qmlproject.qrc",
"QmlProject.mimetypes.xml"
]
}