2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
2012-04-01 19:21:05 +03:00
|
|
|
import "../QtcLibrary.qbs" as QtcLibrary
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2012-04-01 19:21:05 +03:00
|
|
|
QtcLibrary {
|
|
|
|
|
name: "ExtensionSystem"
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2012-09-05 11:01:43 +02:00
|
|
|
cpp.defines: base.concat([
|
2012-02-09 14:30:09 +01:00
|
|
|
"EXTENSIONSYSTEM_LIBRARY",
|
2013-01-12 23:29:24 +02:00
|
|
|
"IDE_TEST_DIR=\".\""
|
2012-09-05 11:01:43 +02:00
|
|
|
])
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2012-04-10 15:56:23 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["core", "widgets"] }
|
2012-04-01 19:21:05 +03:00
|
|
|
Depends { name: "Aggregation" }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
files: [
|
|
|
|
|
"extensionsystem_global.h",
|
|
|
|
|
"invoker.cpp",
|
|
|
|
|
"invoker.h",
|
|
|
|
|
"iplugin.cpp",
|
|
|
|
|
"iplugin.h",
|
|
|
|
|
"iplugin_p.h",
|
|
|
|
|
"optionsparser.cpp",
|
|
|
|
|
"optionsparser.h",
|
|
|
|
|
"plugincollection.cpp",
|
|
|
|
|
"plugincollection.h",
|
|
|
|
|
"plugindetailsview.cpp",
|
|
|
|
|
"plugindetailsview.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"plugindetailsview.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"pluginerroroverview.cpp",
|
|
|
|
|
"pluginerroroverview.h",
|
|
|
|
|
"pluginerroroverview.ui",
|
|
|
|
|
"pluginerrorview.cpp",
|
|
|
|
|
"pluginerrorview.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"pluginerrorview.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"pluginmanager.cpp",
|
|
|
|
|
"pluginmanager.h",
|
|
|
|
|
"pluginmanager_p.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"pluginspec.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"pluginspec.h",
|
|
|
|
|
"pluginspec_p.h",
|
|
|
|
|
"pluginview.cpp",
|
|
|
|
|
"pluginview.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"pluginview.qrc",
|
|
|
|
|
"pluginview.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"images/error.png",
|
|
|
|
|
"images/notloaded.png",
|
|
|
|
|
"images/ok.png",
|
|
|
|
|
]
|
|
|
|
|
}
|