From 36d8507a4875889d3b474782d8ee9db65aab5109 Mon Sep 17 00:00:00 2001 From: Alex Fabijanic Date: Thu, 30 Jun 2022 05:49:08 +0200 Subject: [PATCH] fix(CMake): Linking with Foundation on Android gives error #3652 #3653 --- Foundation/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/CMakeLists.txt b/Foundation/CMakeLists.txt index 80deebe3e..58d411fdb 100644 --- a/Foundation/CMakeLists.txt +++ b/Foundation/CMakeLists.txt @@ -222,7 +222,7 @@ if(ANDROID) POCO_NO_WSTRING POCO_NO_SHAREDMEMORY ) - target_link_libraries(Foundation PUBLIC log) + target_link_libraries(Foundation PUBLIC -llog) endif() POCO_INSTALL(Foundation)