From c7e2d6a06d940a88964cd195a36b480ddf713796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sun, 1 May 2022 16:15:28 +0200 Subject: Disable build of test tool on Android --- src/CMakeLists.txt | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 82c6388..b68860a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -28,11 +28,13 @@ set_target_properties(erebos-bin PROPERTIES OUTPUT_NAME erebos ) -target_link_libraries(erebos-bin - erebos - stdc++fs - Threads::Threads - ${ZLIB_LIBRARIES} - ${OPENSSL_LIBRARIES} - ${B2_LIBRARY} - ) +if (NOT CMAKE_SYSTEM_NAME STREQUAL "Android") + target_link_libraries(erebos-bin + erebos + stdc++fs + Threads::Threads + ${ZLIB_LIBRARIES} + ${OPENSSL_LIBRARIES} + ${B2_LIBRARY} + ) +endif() -- cgit v1.2.3