forked from qt-creator/qt-creator
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
43
src/plugins/tasklist/tasklist.qbs
Normal file
43
src/plugins/tasklist/tasklist.qbs
Normal file
@@ -0,0 +1,43 @@
|
||||
import qbs.base 1.0
|
||||
|
||||
import "../QtcPlugin.qbs" as QtcPlugin
|
||||
|
||||
QtcPlugin {
|
||||
name: "TaskList"
|
||||
|
||||
Depends { name: "qt"; submodules: ['gui'] }
|
||||
Depends { name: "utils" }
|
||||
Depends { name: "extensionsystem" }
|
||||
Depends { name: "aggregation" }
|
||||
Depends { name: "Core" }
|
||||
Depends { name: "ProjectExplorer" }
|
||||
Depends { name: "find" }
|
||||
Depends { name: "Locator" }
|
||||
Depends { name: "TextEditor" }
|
||||
|
||||
Depends { name: "cpp" }
|
||||
cpp.includePaths: [
|
||||
"..",
|
||||
"../../libs",
|
||||
buildDirectory
|
||||
]
|
||||
|
||||
files: [
|
||||
"tasklistplugin.h",
|
||||
"tasklist_export.h",
|
||||
"tasklistconstants.h",
|
||||
"stopmonitoringhandler.h",
|
||||
"taskfile.h",
|
||||
"taskfilefactory.h",
|
||||
"tasklistplugin.cpp",
|
||||
"stopmonitoringhandler.cpp",
|
||||
"taskfile.cpp",
|
||||
"taskfilefactory.cpp",
|
||||
"tasklist.qrc",
|
||||
"TaskList.mimetypes.xml"
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user