aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2020-04-28 10:51:47 +0200
committerEike Ziller <eike.ziller@qt.io>2020-04-29 14:25:58 +0000
commit5feec21cbd19d81eb4be89a85760447b29610854 (patch)
treeb9b019efe2c3c4c3684566268396e224e016403a /scripts
parent549b5719f6e560e68879850509f13ecbde1bf1f3 (diff)
Packaging: Install documentation
Fixes: QTCREATORBUG-23912 Change-Id: I2e28c9f9000dca1216ec31bad307031937223e83 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/build.py b/scripts/build.py
index a58a688dca..8102224cd8 100755
--- a/scripts/build.py
+++ b/scripts/build.py
@@ -146,7 +146,19 @@ def build_qtcreator(args, paths):
common.check_print_call(['cmake', '--install', '.', '--prefix', paths.dev_install,
'--component', 'Devel'],
paths.build)
-
+ if not args.no_docs:
+ common.check_print_call(['cmake', '--install', '.', '--prefix', paths.install,
+ '--component', 'qtc_docs_qtcreator'],
+ paths.build)
+ common.check_print_call(['cmake', '--install', '.', '--prefix', paths.install,
+ '--component', 'html_docs_qtcreator'],
+ paths.build)
+ common.check_print_call(['cmake', '--install', '.', '--prefix', paths.install,
+ '--component', 'html_docs_qtcreator-dev'],
+ paths.build)
+ common.check_print_call(['cmake', '--install', '.', '--prefix', paths.install,
+ '--component', 'html_docs_qtcreator-dev'],
+ paths.build)
def build_wininterrupt(args, paths):
if not common.is_windows_platform():
return