Skip to content

Commit c0032f1

Browse files
committedAug 21, 2018
Fix build for Android
Followup 07c80b8
1 parent eb220ed commit c0032f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/native/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
SET(NATIVE_LINK_LIBS)
55

6-
IF(UNIX AND NOT APPLE)
6+
IF(UNIX AND NOT APPLE AND NOT ANDROID)
77
FIND_PACKAGE(Qt5DBus REQUIRED)
8-
ENDIF(UNIX AND NOT APPLE)
8+
ENDIF(UNIX AND NOT APPLE AND NOT ANDROID)
99

1010
IF(APPLE)
1111
SET(APPLE_LIB_LIST ApplicationServices CoreFoundation IOKit AppKit)

0 commit comments

Comments
 (0)
Please sign in to comment.