From 88c80dc2eea89f8e261c76e2b812717e0f29d2af Mon Sep 17 00:00:00 2001 From: Thomas Winget Date: Tue, 3 Mar 2020 00:31:31 -0500 Subject: [PATCH] add cxxopts to shared_lib dependencies --- llarp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/CMakeLists.txt b/llarp/CMakeLists.txt index 4299fdadf..27b6e5e8c 100644 --- a/llarp/CMakeLists.txt +++ b/llarp/CMakeLists.txt @@ -227,7 +227,7 @@ endif() if(WITH_SHARED) add_library(${SHARED_LIB} SHARED ${LIB_SRC}) set(LIBS ${LIBS} Threads::Threads) - target_link_libraries(${SHARED_LIB} PUBLIC ${ABYSS_LIB} ${CRYPTOGRAPHY_LIB} ${UTIL_LIB} ${PLATFORM_LIB} ${LIBS}) + target_link_libraries(${SHARED_LIB} PUBLIC cxxopts ${ABYSS_LIB} ${CRYPTOGRAPHY_LIB} ${UTIL_LIB} ${PLATFORM_LIB} ${LIBS}) if (WIN32) target_link_libraries(${SHARED_LIB} PUBLIC ws2_32 iphlpapi) else()