Skip to content

Commit

Permalink
Land #1103 - fix ddl versioning on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Oct 2, 2024
2 parents 8bc62b8 + 47681bf commit 9a399d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions crypto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -850,10 +850,10 @@ set_target_properties(crypto PROPERTIES
EXPORT_NAME Crypto
VERSION ${CRYPTO_VERSION}
SOVERSION ${CRYPTO_MAJOR_VERSION}
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
DLL_NAME_WITH_SOVERSION TRUE
endif()
)
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
set_target_properties(crypto PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
endif()

target_include_directories(
crypto
Expand Down
6 changes: 3 additions & 3 deletions ssl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ set_target_properties(ssl PROPERTIES
EXPORT_NAME SSL
VERSION ${SSL_VERSION}
SOVERSION ${SSL_MAJOR_VERSION}
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
DLL_NAME_WITH_SOVERSION TRUE
endif()
)
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
set_target_properties(ssl PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
endif()

target_include_directories(
ssl
Expand Down
6 changes: 3 additions & 3 deletions tls/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ set_target_properties(tls PROPERTIES
EXPORT_NAME TLS
VERSION ${TLS_VERSION}
SOVERSION ${TLS_MAJOR_VERSION}
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
DLL_NAME_WITH_SOVERSION TRUE
endif()
)
if(NOT CMAKE_VERSION VERSION_LESS 3.27.0)
set_target_properties(tls PROPERTIES DLL_NAME_WITH_SOVERSION TRUE)
endif()

target_include_directories(
tls
Expand Down

0 comments on commit 9a399d2

Please sign in to comment.