diff options
author | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-02 15:50:37 +0900 |
---|---|---|
committer | kinichiro <kinichiro.inoguchi@gmail.com> | 2021-05-07 20:31:22 +0900 |
commit | 4c56df46de18da692785ed337910ab852c34e0ce (patch) | |
tree | 0096e13212ac46cf6d7e59c65353c8183ee52000 /apps | |
parent | 9971b0820c72a7be267e562f6002439b06103b94 (diff) | |
download | portable-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.txt | 2 |
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 | ||
45 | add_executable(nc ${NC_SRC}) | 45 | add_executable(nc ${NC_SRC}) |
46 | target_include_directories(nc PRIVATE . ./compat ../../include/compat) | 46 | target_include_directories(nc PRIVATE . ./compat ../../include/compat) |
47 | target_link_libraries(nc tls ${OPENSSL_LIBS}) | 47 | target_link_libraries(nc ${LIBTLS_LIBS}) |
48 | 48 | ||
49 | if(ENABLE_NC) | 49 | if(ENABLE_NC) |
50 | if(ENABLE_LIBRESSL_INSTALL) | 50 | if(ENABLE_LIBRESSL_INSTALL) |