2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlProjectManager"
|
|
|
|
|
|
2012-11-26 21:24:16 +02:00
|
|
|
Depends { name: "cpp" }
|
2012-10-18 09:41:05 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "declarative"] }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "TextEditor" }
|
|
|
|
|
Depends { name: "QmlJSEditor" }
|
|
|
|
|
Depends { name: "QmlJS" }
|
|
|
|
|
Depends { name: "Debugger" }
|
|
|
|
|
Depends { name: "QtSupport" }
|
2012-09-30 07:26:39 +02:00
|
|
|
Depends { name: "app_version_header" }
|
2012-11-26 21:24:16 +02:00
|
|
|
cpp.defines: base.concat(["QMLPROJECTMANAGER_LIBRARY", "QT_NO_CAST_FROM_ASCII"])
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
files: [
|
2013-01-11 13:31:03 +01:00
|
|
|
"qmlapp.cpp",
|
|
|
|
|
"qmlapp.h",
|
|
|
|
|
"qmlapplicationwizard.cpp",
|
|
|
|
|
"qmlapplicationwizard.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"QmlProject.mimetypes.xml",
|
|
|
|
|
"qmlproject.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlproject.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlproject.qrc",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectconstants.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectfile.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectfile.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectmanager.cpp",
|
|
|
|
|
"qmlprojectmanager.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectmanager_global.h",
|
|
|
|
|
"qmlprojectmanagerconstants.h",
|
|
|
|
|
"qmlprojectnodes.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectnodes.h",
|
|
|
|
|
"qmlprojectplugin.cpp",
|
|
|
|
|
"qmlprojectplugin.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectrunconfiguration.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectrunconfiguration.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectrunconfigurationfactory.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectrunconfigurationfactory.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"qmlprojectrunconfigurationwidget.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"qmlprojectrunconfigurationwidget.h",
|
|
|
|
|
"qmlprojectruncontrol.cpp",
|
|
|
|
|
"qmlprojectruncontrol.h",
|
|
|
|
|
"fileformat/filefilteritems.cpp",
|
|
|
|
|
"fileformat/filefilteritems.h",
|
|
|
|
|
"fileformat/qmlprojectfileformat.cpp",
|
|
|
|
|
"fileformat/qmlprojectfileformat.h",
|
|
|
|
|
"fileformat/qmlprojectitem.cpp",
|
|
|
|
|
"fileformat/qmlprojectitem.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
]
|
|
|
|
|
}
|