2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlProjectManager"
|
|
|
|
|
|
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" }
|
2013-02-22 15:34:00 +01:00
|
|
|
Depends { name: "QmlJSTools" }
|
2013-08-06 13:40:11 +02:00
|
|
|
Depends { name: "QmlDebug" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Debugger" }
|
|
|
|
|
Depends { name: "QtSupport" }
|
2012-09-30 07:26:39 +02:00
|
|
|
Depends { name: "app_version_header" }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2013-07-30 18:00:27 +02:00
|
|
|
Group {
|
|
|
|
|
name: "General"
|
|
|
|
|
files: [
|
|
|
|
|
"qmlapp.cpp", "qmlapp.h",
|
|
|
|
|
"qmlapplicationwizard.cpp", "qmlapplicationwizard.h",
|
|
|
|
|
"qmlproject.cpp", "qmlproject.h",
|
|
|
|
|
"qmlproject.qrc",
|
|
|
|
|
"qmlprojectconstants.h",
|
|
|
|
|
"qmlprojectenvironmentaspect.cpp", "qmlprojectenvironmentaspect.h",
|
|
|
|
|
"qmlprojectfile.cpp", "qmlprojectfile.h",
|
|
|
|
|
"qmlprojectmanager.cpp", "qmlprojectmanager.h",
|
|
|
|
|
"qmlprojectmanager_global.h",
|
|
|
|
|
"qmlprojectmanagerconstants.h",
|
|
|
|
|
"qmlprojectnodes.cpp", "qmlprojectnodes.h",
|
|
|
|
|
"qmlprojectplugin.cpp", "qmlprojectplugin.h",
|
|
|
|
|
"qmlprojectrunconfiguration.cpp", "qmlprojectrunconfiguration.h",
|
|
|
|
|
"qmlprojectrunconfigurationfactory.cpp", "qmlprojectrunconfigurationfactory.h",
|
|
|
|
|
"qmlprojectrunconfigurationwidget.cpp", "qmlprojectrunconfigurationwidget.h",
|
|
|
|
|
"qmlprojectruncontrol.cpp", "qmlprojectruncontrol.h",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Group {
|
|
|
|
|
name: "File Format"
|
|
|
|
|
prefix: "fileformat/"
|
|
|
|
|
files: [
|
|
|
|
|
"filefilteritems.cpp", "filefilteritems.h",
|
|
|
|
|
"qmlprojectfileformat.cpp", "qmlprojectfileformat.h",
|
|
|
|
|
"qmlprojectitem.cpp", "qmlprojectitem.h",
|
|
|
|
|
]
|
|
|
|
|
}
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|