From 848950877fb2d66d76cb1258fc28a2b1b453a42d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 14 Dec 2023 03:36:09 +0000 Subject: cmake: stop exporting compat functions --- apps/ocspcheck/CMakeLists.txt | 2 +- apps/openssl/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/ocspcheck/CMakeLists.txt b/apps/ocspcheck/CMakeLists.txt index 41c7845..778e837 100644 --- a/apps/ocspcheck/CMakeLists.txt +++ b/apps/ocspcheck/CMakeLists.txt @@ -20,7 +20,7 @@ target_include_directories(ocspcheck PUBLIC ../../include ${CMAKE_BINARY_DIR}/include) -target_link_libraries(ocspcheck tls ${OPENSSL_LIBS}) +target_link_libraries(ocspcheck tls ${OPENSSL_LIBS} compat_obj tls_compat_obj) if(ENABLE_LIBRESSL_INSTALL) install(TARGETS ocspcheck DESTINATION ${CMAKE_INSTALL_BINDIR}) diff --git a/apps/openssl/CMakeLists.txt b/apps/openssl/CMakeLists.txt index efea217..f2dcf97 100644 --- a/apps/openssl/CMakeLists.txt +++ b/apps/openssl/CMakeLists.txt @@ -75,7 +75,7 @@ target_include_directories(openssl PUBLIC ../../include ${CMAKE_BINARY_DIR}/include) -target_link_libraries(openssl ${OPENSSL_LIBS}) +target_link_libraries(openssl ${OPENSSL_LIBS} compat_obj) if(ENABLE_LIBRESSL_INSTALL) install(TARGETS openssl DESTINATION ${CMAKE_INSTALL_BINDIR}) -- cgit v1.2.3-55-g6feb