From b97ea0c409b7a847cc6f131bb677d0f2f706dfbe Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Mon, 6 Aug 2018 09:51:36 +1000 Subject: [PATCH] fix target names --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f65a1690d..f86d988fc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -422,8 +422,8 @@ else() endif(NOT WITH_SHARED) endif(WITH_STATIC) if(ANDROID) - add_library(lokinet-android SHARED jni/lokinet-android.cpp) - target_link_libraries(lokinet-android ${STATIC_LIB} llarpplatform-static ${THREAD_LIB}) + add_library(lokinetandroid SHARED jni/lokinet_android.cpp) + target_link_libraries(lokinetandroid ${STATIC_LIB} llarpplatform-static ${THREAD_LIB}) endif() if(WITH_SHARED)