summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorTasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>2021-04-14 15:04:14 +0900
committerTasuku Suzuki <tasuku.suzuki@signal-slot.co.jp>2021-04-14 16:24:33 +0900
commit865f3c2a11a7e7e1dedbb216669cdc2e091f45db (patch)
tree46ef65feafa7e371cd748864dbe736bbe48c9f2e /src/tools
parent62efc8990dcd57bafd5d368fd1945792ffb29ee0 (diff)
Fix build without features.systemsemaphore
Change-Id: I73059f48d37253b5f962f96f693f26c7d55a31e1 Reviewed-by: BogDan Vatra <bogdan@kdab.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt
index b73c050e5b..13a870ac9e 100644
--- a/src/tools/CMakeLists.txt
+++ b/src/tools/CMakeLists.txt
@@ -12,7 +12,7 @@ endif()
# Only include the following tools when performing a host build
if(NOT CMAKE_CROSSCOMPILING)
add_subdirectory(androiddeployqt)
- if(QT_FEATURE_gui)
+ if(QT_FEATURE_gui AND QT_FEATURE_systemsemaphore)
add_subdirectory(androidtestrunner)
endif()
endif()