diff --git a/example/CMakeLists.txt b/example/CMakeLists.txt index 695053cd..a404682a 100644 --- a/example/CMakeLists.txt +++ b/example/CMakeLists.txt @@ -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)