diff options
author | Brent Cook <busterb@gmail.com> | 2023-11-05 14:35:10 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-11-05 14:35:10 -0600 |
commit | 7a22786049e1b5d9637d54f638b9e821e97a83e5 (patch) | |
tree | e68c19c675bcdd866624f0f1ca5510ae04a28511 /tls | |
parent | 36175c41bf6e7acfaa827117ccafb01978f1fef6 (diff) | |
parent | 2c5abde778053272fdc0c5692691309e8f1e79b1 (diff) | |
download | portable-7a22786049e1b5d9637d54f638b9e821e97a83e5.tar.gz portable-7a22786049e1b5d9637d54f638b9e821e97a83e5.tar.bz2 portable-7a22786049e1b5d9637d54f638b9e821e97a83e5.zip |
Land #932, use existing crypto/ssl libs for tls tests
Diffstat (limited to 'tls')
-rw-r--r-- | tls/CMakeLists.txt | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt index 077f5ee..c3c9424 100644 --- a/tls/CMakeLists.txt +++ b/tls/CMakeLists.txt | |||
@@ -96,8 +96,7 @@ endif(ENABLE_LIBRESSL_INSTALL) | |||
96 | 96 | ||
97 | # build static library for regression test | 97 | # build static library for regression test |
98 | if(BUILD_SHARED_LIBS) | 98 | if(BUILD_SHARED_LIBS) |
99 | add_library(tls-static STATIC $<TARGET_OBJECTS:tls_obj> | 99 | add_library(tls-static STATIC $<TARGET_OBJECTS:tls_obj>) |
100 | $<TARGET_OBJECTS:ssl_obj> $<TARGET_OBJECTS:crypto_obj>) | 100 | target_link_libraries(tls-static ${OPENSSL_TEST_LIBS}) |
101 | target_link_libraries(tls-static ${PLATFORM_LIBS}) | ||
102 | endif() | 101 | endif() |
103 | 102 | ||