summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-09-11 13:26:11 +0200
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2018-09-11 15:05:21 +0000
commit1410f2cf5c124bc3f17eb3b0221f3707aae49d91 (patch)
tree09c8145f8e81326135296b68c5c3b9d74949781d /examples
parentbef5bfe27bc4154cfc83150299d8b1df732f6bea (diff)
disable tools that don't make sense on iOS more sensiblyv5.12.0-alpha1
the primary method of doing that is via the -nomake tools machanism, which is the default when cross-building. amends 78df61b51. Fixes: QTBUG-70454 Change-Id: I837d5d130c1295154dab5d0424da46dacbfe2a34 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'examples')
-rw-r--r--examples/examples.pro9
1 files changed, 5 insertions, 4 deletions
diff --git a/examples/examples.pro b/examples/examples.pro
index c00e041be..2003bc514 100644
--- a/examples/examples.pro
+++ b/examples/examples.pro
@@ -1,7 +1,8 @@
TEMPLATE = subdirs
-qtHaveModule(widgets) {
- SUBDIRS += linguist
- !uikit: SUBDIRS += help designer uitools assistant
-}
+qtHaveModule(widgets): SUBDIRS += help designer linguist uitools assistant
!qtConfig(process): SUBDIRS -= assistant designer
+
+qtNomakeTools( \
+ assistant \
+)