From 4c56df46de18da692785ed337910ab852c34e0ce Mon Sep 17 00:00:00 2001 From: kinichiro Date: Sun, 2 May 2021 15:50:37 +0900 Subject: Statically link libcrypto/ssl into libtls with cmake --- apps/nc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/nc/CMakeLists.txt b/apps/nc/CMakeLists.txt index cc34ef3..f21c869 100644 --- a/apps/nc/CMakeLists.txt +++ b/apps/nc/CMakeLists.txt @@ -44,7 +44,7 @@ endif() add_executable(nc ${NC_SRC}) target_include_directories(nc PRIVATE . ./compat ../../include/compat) -target_link_libraries(nc tls ${OPENSSL_LIBS}) +target_link_libraries(nc ${LIBTLS_LIBS}) if(ENABLE_NC) if(ENABLE_LIBRESSL_INSTALL) -- cgit v1.2.3-55-g6feb