summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/tools/CMakeLists.txt14
-rw-r--r--tests/auto/tools/tools.pro3
2 files changed, 11 insertions, 6 deletions
diff --git a/tests/auto/tools/CMakeLists.txt b/tests/auto/tools/CMakeLists.txt
index d6cc753db7..f1a9ced60e 100644
--- a/tests/auto/tools/CMakeLists.txt
+++ b/tests/auto/tools/CMakeLists.txt
@@ -1,10 +1,14 @@
# Generated from tools.pro.
-add_subdirectory(qmakelib)
-add_subdirectory(qmake)
-add_subdirectory(moc)
-add_subdirectory(rcc)
-if(TARGET Qt::Widgets)
+# QTBUG-88538 # special case
+if(NOT ANDROID AND NOT IOS)
+ add_subdirectory(qmakelib)
+ add_subdirectory(qmake)
+ add_subdirectory(moc)
+ add_subdirectory(rcc)
+endif()
+# QTBUG-88538 # special case
+if(TARGET Qt::Widgets AND NOT ANDROID AND NOT IOS)
add_subdirectory(uic)
endif()
if(TARGET Qt::DBus)
diff --git a/tests/auto/tools/tools.pro b/tests/auto/tools/tools.pro
index 7e4dc67b09..c73036aa4a 100644
--- a/tests/auto/tools/tools.pro
+++ b/tests/auto/tools/tools.pro
@@ -1,5 +1,6 @@
TEMPLATE=subdirs
-SUBDIRS=\
+# QTBUG-88538
+!android:!ios: SUBDIRS = \
qmakelib \
qmake \
uic \