summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-08-27 12:21:50 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2018-08-27 11:41:50 +0000
commit78df61b51b9bf52364681ccedc82c8eb6aba5469 (patch)
tree6d7403869a4bc9f910bc3bcf7eeb5cc6162ceedc /src
parente8f3a4afd5e7a62ef5d6e7fdf953b8befe9bb0cd (diff)
Disable tools that don't make sense on iOS
Until we can build hosts tools (or tools that only make sense to run on the host/development platform, not the target), that have GUI dependencies, we have to exclude the tools completely. Change-Id: If12c5b4bd47a6456f7ae2779a62cca430cf15c3c Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/src.pro6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/src.pro b/src/src.pro
index 8eac4432f..6525af678 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -3,7 +3,7 @@ TEMPLATE = subdirs
qtHaveModule(widgets) {
no-png {
message("Some graphics-related tools are unavailable without PNG support")
- } else {
+ } else: !uikit {
SUBDIRS = assistant \
pixeltool \
designer
@@ -18,14 +18,14 @@ SUBDIRS += linguist \
qtattributionsscanner
qtConfig(library) {
- !android|android_app: SUBDIRS += qtplugininfo
+ if(!android|android_app):!uikit: SUBDIRS += qtplugininfo
}
config_clang: qtConfig(thread): SUBDIRS += qdoc
if(!android|android_app):!uikit: SUBDIRS += qtpaths
-mac {
+macos {
SUBDIRS += macdeployqt
}