Files
qt-creator/src/plugins/qmlprojectmanager/qmlprojectmanager.qbs
Alessandro Portale 8c1b8239f4 QmlProjectManager: Qt Quick UI templates via json wizard
Using the new .json wizard engine allows us to get rid of much old
custom wizard logic. As additional benefit for the end user of Qt
Creator, the .qml.ui split is now optional.

Change-Id: Ic6d35e650cf0a7735cdfac9080f95015309a5879
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
2015-05-18 13:00:17 +00:00

43 lines
1.4 KiB
QML

import qbs 1.0
QtcPlugin {
name: "QmlProjectManager"
Depends { name: "Qt"; submodules: ["widgets", "network"] }
Depends { name: "QmlJS" }
Depends { name: "Utils" }
Depends { name: "Core" }
Depends { name: "ProjectExplorer" }
Depends { name: "QtSupport" }
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",
"qmlprojectrunconfigurationwidget.cpp", "qmlprojectrunconfigurationwidget.h"
]
}
Group {
name: "File Format"
prefix: "fileformat/"
files: [
"filefilteritems.cpp", "filefilteritems.h",
"qmlprojectfileformat.cpp", "qmlprojectfileformat.h",
"qmlprojectitem.cpp", "qmlprojectitem.h",
]
}
}