aboutsummaryrefslogtreecommitdiffstats
path: root/doc/doc.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doc.qbs')
-rw-r--r--doc/doc.qbs10
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/doc.qbs b/doc/doc.qbs
index f7efdd239..c83259c42 100644
--- a/doc/doc.qbs
+++ b/doc/doc.qbs
@@ -6,6 +6,7 @@ Product {
builtByDefault: false
type: "qch"
Depends { name: "Qt.core" }
+ Depends { name: "qbsbuildconfig" }
files: [
"qbs.qdoc",
@@ -28,8 +29,13 @@ Product {
Group {
fileTagsFilter: ["qdoc-output"]
- qbs.install: true
- qbs.installDir: "share/doc/qbs/html"
+ qbs.install: qbsbuildconfig.installHtml
+ qbs.installDir: qbsbuildconfig.docInstallDir
qbs.installSourceBase: Qt.core.qdocOutputDir
}
+ Group {
+ fileTagsFilter: ["qch"]
+ qbs.install: qbsbuildconfig.installQch
+ qbs.installDir: qbsbuildconfig.docInstallDir
+ }
}