2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "QmlProjectManager"
|
|
|
|
|
|
2013-10-01 18:03:41 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["widgets", "network"] }
|
2014-02-10 13:02:33 +01:00
|
|
|
Depends { name: "QmlJS" }
|
|
|
|
|
Depends { name: "Utils" }
|
|
|
|
|
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
|
|
|
|
Depends { name: "ProjectExplorer" }
|
|
|
|
|
Depends { name: "QtSupport" }
|
|
|
|
|
|
2013-07-30 18:00:27 +02:00
|
|
|
Group {
|
|
|
|
|
name: "General"
|
|
|
|
|
files: [
|
|
|
|
|
"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",
|
2013-10-16 13:20:26 +03:00
|
|
|
"qmlprojectrunconfigurationwidget.cpp", "qmlprojectrunconfigurationwidget.h"
|
2013-07-30 18:00:27 +02:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|