forked from qt-creator/qt-creator
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
89
src/plugins/help/help.qbs
Normal file
89
src/plugins/help/help.qbs
Normal file
@@ -0,0 +1,89 @@
|
||||
import qbs.base 1.0
|
||||
|
||||
import "../QtcPlugin.qbs" as QtcPlugin
|
||||
|
||||
QtcPlugin {
|
||||
name: "Help"
|
||||
|
||||
Depends { name: "qt"; submodules: ['gui', 'help', 'webkit'] }
|
||||
Depends { name: "utils" }
|
||||
Depends { name: "extensionsystem" }
|
||||
Depends { name: "aggregation" }
|
||||
Depends { name: "Core" }
|
||||
Depends { name: "find" }
|
||||
Depends { name: "Locator" }
|
||||
|
||||
Depends { name: "cpp" }
|
||||
cpp.defines: base.concat(["QT_CLUCENE_SUPPORT"])
|
||||
cpp.includePaths: [
|
||||
"../../shared/help",
|
||||
".",
|
||||
"..",
|
||||
"../..",
|
||||
"../../libs",
|
||||
buildDirectory
|
||||
]
|
||||
|
||||
files: [
|
||||
"centralwidget.h",
|
||||
"docsettingspage.h",
|
||||
"filtersettingspage.h",
|
||||
"generalsettingspage.h",
|
||||
"help_global.h",
|
||||
"helpconstants.h",
|
||||
"helpfindsupport.h",
|
||||
"helpindexfilter.h",
|
||||
"localhelpmanager.h",
|
||||
"helpmode.h",
|
||||
"helpplugin.h",
|
||||
"helpviewer.h",
|
||||
"helpviewer_p.h",
|
||||
"openpagesmanager.h",
|
||||
"openpagesmodel.h",
|
||||
"openpagesswitcher.h",
|
||||
"openpageswidget.h",
|
||||
"remotehelpfilter.h",
|
||||
"searchwidget.h",
|
||||
"xbelsupport.h",
|
||||
"externalhelpwindow.h",
|
||||
"centralwidget.cpp",
|
||||
"docsettingspage.cpp",
|
||||
"filtersettingspage.cpp",
|
||||
"generalsettingspage.cpp",
|
||||
"helpfindsupport.cpp",
|
||||
"helpindexfilter.cpp",
|
||||
"localhelpmanager.cpp",
|
||||
"helpmode.cpp",
|
||||
"helpplugin.cpp",
|
||||
"helpviewer.cpp",
|
||||
"helpviewer_qtb.cpp",
|
||||
"helpviewer_qwv.cpp",
|
||||
"openpagesmanager.cpp",
|
||||
"openpagesmodel.cpp",
|
||||
"openpagesswitcher.cpp",
|
||||
"openpageswidget.cpp",
|
||||
"remotehelpfilter.cpp",
|
||||
"searchwidget.cpp",
|
||||
"xbelsupport.cpp",
|
||||
"externalhelpwindow.cpp",
|
||||
"docsettingspage.ui",
|
||||
"filtersettingspage.ui",
|
||||
"generalsettingspage.ui",
|
||||
"remotehelpfilter.ui",
|
||||
"help.qrc",
|
||||
"../../shared/help/bookmarkmanager.h",
|
||||
"../../shared/help/contentwindow.h",
|
||||
"../../shared/help/filternamedialog.h",
|
||||
"../../shared/help/indexwindow.h",
|
||||
"../../shared/help/topicchooser.h",
|
||||
"../../shared/help/bookmarkmanager.cpp",
|
||||
"../../shared/help/contentwindow.cpp",
|
||||
"../../shared/help/filternamedialog.cpp",
|
||||
"../../shared/help/indexwindow.cpp",
|
||||
"../../shared/help/topicchooser.cpp",
|
||||
"../../shared/help/bookmarkdialog.ui",
|
||||
"../../shared/help/filternamedialog.ui",
|
||||
"../../shared/help/topicchooser.ui"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user