aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crypto/CMakeLists.txt6
-rw-r--r--ssl/CMakeLists.txt6
-rw-r--r--tls/CMakeLists.txt6
3 files changed, 9 insertions, 9 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index 59939cb..03d3c24 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -850,10 +850,10 @@ set_target_properties(crypto PROPERTIES
850 EXPORT_NAME Crypto 850 EXPORT_NAME Crypto
851 VERSION ${CRYPTO_VERSION} 851 VERSION ${CRYPTO_VERSION}
852 SOVERSION ${CRYPTO_MAJOR_VERSION} 852 SOVERSION ${CRYPTO_MAJOR_VERSION}
853 if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
854 DLL_NAME_WITH_SOVERSION TRUE
855 endif()
856) 853)
854if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
855 set_target_properties(crypto PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
856endif()
857 857
858target_include_directories( 858target_include_directories(
859 crypto 859 crypto
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt
index f5288a9..cf62ff4 100644
--- a/ssl/CMakeLists.txt
+++ b/ssl/CMakeLists.txt
@@ -92,10 +92,10 @@ set_target_properties(ssl PROPERTIES
92 EXPORT_NAME SSL 92 EXPORT_NAME SSL
93 VERSION ${SSL_VERSION} 93 VERSION ${SSL_VERSION}
94 SOVERSION ${SSL_MAJOR_VERSION} 94 SOVERSION ${SSL_MAJOR_VERSION}
95 if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
96 DLL_NAME_WITH_SOVERSION TRUE
97 endif()
98) 95)
96if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
97 set_target_properties(ssl PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
98endif()
99 99
100target_include_directories( 100target_include_directories(
101 ssl 101 ssl
diff --git a/tls/CMakeLists.txt b/tls/CMakeLists.txt
index 406fe12..c81bbb0 100644
--- a/tls/CMakeLists.txt
+++ b/tls/CMakeLists.txt
@@ -64,10 +64,10 @@ set_target_properties(tls PROPERTIES
64 EXPORT_NAME TLS 64 EXPORT_NAME TLS
65 VERSION ${TLS_VERSION} 65 VERSION ${TLS_VERSION}
66 SOVERSION ${TLS_MAJOR_VERSION} 66 SOVERSION ${TLS_MAJOR_VERSION}
67 if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
68 DLL_NAME_WITH_SOVERSION TRUE
69 endif()
70) 67)
68if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
69 set_target_properties(tls PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
70endif()
71 71
72target_include_directories( 72target_include_directories(
73 tls 73 tls