From 54f5d292ff9a9629cb64b4153d080ba37b746f72 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 6 Aug 2018 11:18:54 +1000 Subject: [PATCH] fix android target --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f86d988fc..3ff52ba1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -423,7 +423,7 @@ else() endif(WITH_STATIC) if(ANDROID) add_library(lokinetandroid SHARED jni/lokinet_android.cpp) - target_link_libraries(lokinetandroid ${STATIC_LIB} llarpplatform-static ${THREAD_LIB}) + target_link_libraries(lokinetandroid ${STATIC_LIB} ${LIBS}) endif() if(WITH_SHARED)