Add dependency to Android's log target in CMake

This commit is contained in:
Tobias Ulvgard 2018-10-03 10:10:37 +02:00
parent 10000c383a
commit f01da91abf
1 changed files with 7 additions and 1 deletions

View File

@ -32,7 +32,13 @@ endif()
find_package(Threads REQUIRED)
add_executable(example example.cpp)
target_link_libraries(example spdlog::spdlog Threads::Threads)
if(CMAKE_SYSTEM_NAME STREQUAL "Android")
find_library(log-lib log)
target_link_libraries(example spdlog::spdlog Threads::Threads log)
else()
target_link_libraries(example spdlog::spdlog Threads::Threads)
endif()
add_executable(multisink multisink.cpp)
target_link_libraries(multisink spdlog::spdlog Threads::Threads)