forked from qt-creator/qt-creator
There is no reason why it should be more than just a list of plugin specs. Saves a few symbols. Also simplify some related code. Change-Id: Ibaff64735e78e1454e1aca0b49cadb9e1030ee3c Reviewed-by: hjk <hjk@qt.io>
51 lines
1.2 KiB
QML
51 lines
1.2 KiB
QML
import qbs 1.0
|
|
|
|
Project {
|
|
name: "ExtensionSystem"
|
|
|
|
QtcDevHeaders { }
|
|
|
|
QtcLibrary {
|
|
cpp.defines: base.concat([
|
|
"EXTENSIONSYSTEM_LIBRARY",
|
|
"IDE_TEST_DIR=\".\""
|
|
])
|
|
|
|
Depends { name: "Qt"; submodules: ["core", "widgets"] }
|
|
Depends { name: "Aggregation" }
|
|
Depends { name: "Utils" }
|
|
|
|
files: [
|
|
"extensionsystem_global.h",
|
|
"invoker.cpp",
|
|
"invoker.h",
|
|
"iplugin.cpp",
|
|
"iplugin.h",
|
|
"iplugin_p.h",
|
|
"optionsparser.cpp",
|
|
"optionsparser.h",
|
|
"plugindetailsview.cpp",
|
|
"plugindetailsview.h",
|
|
"plugindetailsview.ui",
|
|
"pluginerroroverview.cpp",
|
|
"pluginerroroverview.h",
|
|
"pluginerroroverview.ui",
|
|
"pluginerrorview.cpp",
|
|
"pluginerrorview.h",
|
|
"pluginerrorview.ui",
|
|
"pluginmanager.cpp",
|
|
"pluginmanager.h",
|
|
"pluginmanager_p.h",
|
|
"pluginspec.cpp",
|
|
"pluginspec.h",
|
|
"pluginspec_p.h",
|
|
"pluginview.cpp",
|
|
"pluginview.h",
|
|
]
|
|
|
|
Export {
|
|
Depends { name: "Qt.core" }
|
|
}
|
|
}
|
|
}
|