2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
|
|
|
|
|
|
|
|
|
import "../QtcPlugin.qbs" as QtcPlugin
|
|
|
|
|
|
|
|
|
|
QtcPlugin {
|
|
|
|
|
name: "Help"
|
|
|
|
|
|
2012-06-20 21:47:59 +08:00
|
|
|
Depends { id: qtcore; name: "Qt.core" }
|
|
|
|
|
Depends {
|
|
|
|
|
condition: qtcore.versionMajor == 4
|
|
|
|
|
name: "Qt"; submodules: ["widgets", "help", "webkit", "network"]
|
|
|
|
|
}
|
|
|
|
|
Depends {
|
|
|
|
|
condition: qtcore.versionMajor >= 5
|
|
|
|
|
name: "Qt"; submodules: ["widgets", "help", "network", "printsupport"]
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Core" }
|
2012-02-27 21:09:42 +02:00
|
|
|
Depends { name: "Find" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "Locator" }
|
2012-09-30 07:26:39 +02:00
|
|
|
Depends { name: "app_version_header" }
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2013-03-15 11:57:00 +01:00
|
|
|
|
|
|
|
|
cpp.defines: {
|
|
|
|
|
var list = base;
|
|
|
|
|
if (qtcore.versionMajor >= 5)
|
|
|
|
|
list.push("QT_NO_WEBKIT");
|
|
|
|
|
list.push("QT_CLUCENE_SUPPORT");
|
|
|
|
|
return list;
|
2012-06-20 21:47:59 +08:00
|
|
|
}
|
2013-03-15 11:57:00 +01:00
|
|
|
|
2012-09-27 17:20:00 +02:00
|
|
|
cpp.includePaths: base.concat("../../shared/help")
|
2012-02-09 14:30:09 +01:00
|
|
|
|
|
|
|
|
files: [
|
2012-09-30 13:50:31 +02:00
|
|
|
"centralwidget.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"centralwidget.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"docsettingspage.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"docsettingspage.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"docsettingspage.ui",
|
|
|
|
|
"externalhelpwindow.cpp",
|
|
|
|
|
"externalhelpwindow.h",
|
|
|
|
|
"filtersettingspage.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"filtersettingspage.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"filtersettingspage.ui",
|
|
|
|
|
"generalsettingspage.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"generalsettingspage.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"generalsettingspage.ui",
|
|
|
|
|
"help.qrc",
|
2012-02-09 14:30:09 +01:00
|
|
|
"help_global.h",
|
|
|
|
|
"helpconstants.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"helpfindsupport.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"helpfindsupport.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"helpindexfilter.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"helpindexfilter.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"helpmode.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"helpmode.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"helpplugin.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"helpplugin.h",
|
2012-09-30 13:50:31 +02:00
|
|
|
"helpviewer.cpp",
|
2012-02-09 14:30:09 +01:00
|
|
|
"helpviewer.h",
|
|
|
|
|
"helpviewer_p.h",
|
|
|
|
|
"helpviewer_qtb.cpp",
|
|
|
|
|
"helpviewer_qwv.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"localhelpmanager.cpp",
|
|
|
|
|
"localhelpmanager.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"openpagesmanager.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"openpagesmanager.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"openpagesmodel.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"openpagesmodel.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"openpagesswitcher.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"openpagesswitcher.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"openpageswidget.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"openpageswidget.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"remotehelpfilter.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"remotehelpfilter.h",
|
|
|
|
|
"remotehelpfilter.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"searchwidget.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"searchwidget.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"xbelsupport.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"xbelsupport.h",
|
|
|
|
|
"../../shared/help/bookmarkdialog.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"../../shared/help/bookmarkmanager.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"../../shared/help/bookmarkmanager.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"../../shared/help/contentwindow.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"../../shared/help/contentwindow.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"../../shared/help/filternamedialog.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"../../shared/help/filternamedialog.h",
|
|
|
|
|
"../../shared/help/filternamedialog.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
"../../shared/help/indexwindow.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"../../shared/help/indexwindow.h",
|
2012-02-09 14:30:09 +01:00
|
|
|
"../../shared/help/topicchooser.cpp",
|
2012-09-30 13:50:31 +02:00
|
|
|
"../../shared/help/topicchooser.h",
|
|
|
|
|
"../../shared/help/topicchooser.ui",
|
2012-02-09 14:30:09 +01:00
|
|
|
]
|
|
|
|
|
}
|