forked from qt-creator/qt-creator
This aspect is only available if the special multilanguage plugin is available. Translation changes in that plugin changes this aspect, which results in environment variables which activate the use of a multilanguage created sqlite to provide the translations. Change-Id: I38250b69165eb7ec3e4f82dc34b3cc4ba0a33f8f Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
41 lines
1.2 KiB
QML
41 lines
1.2 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" }
|
|
Depends { name: "TextEditor" }
|
|
|
|
Group {
|
|
name: "General"
|
|
files: [
|
|
"qmlmainfileaspect.cpp", "qmlmainfileaspect.h",
|
|
"qmlmultilanguageaspect.cpp", "qmlmultilanguageaspect.h",
|
|
"qmlproject.cpp", "qmlproject.h",
|
|
"qmlproject.qrc",
|
|
"qmlprojectconstants.h",
|
|
"qmlprojectmanager_global.h",
|
|
"qmlprojectmanagerconstants.h",
|
|
"qmlprojectnodes.cpp", "qmlprojectnodes.h",
|
|
"qmlprojectplugin.cpp", "qmlprojectplugin.h",
|
|
"qmlprojectrunconfiguration.cpp", "qmlprojectrunconfiguration.h"
|
|
]
|
|
}
|
|
|
|
Group {
|
|
name: "File Format"
|
|
prefix: "fileformat/"
|
|
files: [
|
|
"filefilteritems.cpp", "filefilteritems.h",
|
|
"qmlprojectfileformat.cpp", "qmlprojectfileformat.h",
|
|
"qmlprojectitem.cpp", "qmlprojectitem.h",
|
|
]
|
|
}
|
|
}
|