2014-03-11 11:30:14 +01:00
|
|
|
import qbs 1.0
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2016-06-08 17:10:04 +02:00
|
|
|
Project {
|
2012-04-01 19:21:05 +03:00
|
|
|
name: "ExtensionSystem"
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2016-06-08 17:10:04 +02:00
|
|
|
QtcDevHeaders { }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2016-06-08 17:10:04 +02:00
|
|
|
QtcLibrary {
|
|
|
|
|
cpp.defines: base.concat([
|
|
|
|
|
"EXTENSIONSYSTEM_LIBRARY",
|
|
|
|
|
"IDE_TEST_DIR=\".\""
|
|
|
|
|
])
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2016-06-08 17:10:04 +02:00
|
|
|
Depends { name: "Qt"; submodules: ["core", "widgets"] }
|
|
|
|
|
Depends { name: "Aggregation" }
|
|
|
|
|
Depends { name: "Utils" }
|
2013-09-05 15:09:14 +02:00
|
|
|
|
2016-06-08 17:10:04 +02:00
|
|
|
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" }
|
|
|
|
|
}
|
2013-09-05 15:09:14 +02:00
|
|
|
}
|
2012-02-09 14:30:09 +01:00
|
|
|
}
|