aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2021-05-02 15:50:37 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2021-05-07 20:31:22 +0900
commit4c56df46de18da692785ed337910ab852c34e0ce (patch)
tree0096e13212ac46cf6d7e59c65353c8183ee52000 /apps
parent9971b0820c72a7be267e562f6002439b06103b94 (diff)
downloadportable-4c56df46de18da692785ed337910ab852c34e0ce.tar.gz
portable-4c56df46de18da692785ed337910ab852c34e0ce.tar.bz2
portable-4c56df46de18da692785ed337910ab852c34e0ce.zip
Statically link libcrypto/ssl into libtls with cmake
Diffstat (limited to 'apps')
-rw-r--r--apps/nc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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()
44 44
45add_executable(nc ${NC_SRC}) 45add_executable(nc ${NC_SRC})
46target_include_directories(nc PRIVATE . ./compat ../../include/compat) 46target_include_directories(nc PRIVATE . ./compat ../../include/compat)
47target_link_libraries(nc tls ${OPENSSL_LIBS}) 47target_link_libraries(nc ${LIBTLS_LIBS})
48 48
49if(ENABLE_NC) 49if(ENABLE_NC)
50 if(ENABLE_LIBRESSL_INSTALL) 50 if(ENABLE_LIBRESSL_INSTALL)