From c0032f1c62a9e7447d7d187c88f915ed3eb3316b Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Tue, 21 Aug 2018 14:21:49 +0200 Subject: [PATCH] Fix build for Android Followup 07c80b82815 --- src/native/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/native/CMakeLists.txt b/src/native/CMakeLists.txt index 049f80729e2..7e97680c66b 100755 --- a/src/native/CMakeLists.txt +++ b/src/native/CMakeLists.txt @@ -3,9 +3,9 @@ SET(NATIVE_LINK_LIBS) -IF(UNIX AND NOT APPLE) +IF(UNIX AND NOT APPLE AND NOT ANDROID) FIND_PACKAGE(Qt5DBus REQUIRED) -ENDIF(UNIX AND NOT APPLE) +ENDIF(UNIX AND NOT APPLE AND NOT ANDROID) IF(APPLE) SET(APPLE_LIB_LIST ApplicationServices CoreFoundation IOKit AppKit)