diff options
author | Brent Cook <busterb@gmail.com> | 2023-07-07 15:02:16 +0300 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-07-07 15:02:16 +0300 |
commit | 081cee6207dc01747dd968b06637ab9ee2cdc496 (patch) | |
tree | 94b973722f4e5961e58edb03cee096224dd4cc29 /ssl | |
parent | de9c24a0254d554251c1fa43738a6f2e70b3ed83 (diff) | |
download | portable-081cee6207dc01747dd968b06637ab9ee2cdc496.tar.gz portable-081cee6207dc01747dd968b06637ab9ee2cdc496.tar.bz2 portable-081cee6207dc01747dd968b06637ab9ee2cdc496.zip |
fixes #681, allow override of library POSTFIX for nested builds
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 88e7bbd..3d5b5df 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt | |||
@@ -87,7 +87,7 @@ endif() | |||
87 | export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym) | 87 | export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym) |
88 | target_link_libraries(ssl crypto ${PLATFORM_LIBS}) | 88 | target_link_libraries(ssl crypto ${PLATFORM_LIBS}) |
89 | if (WIN32) | 89 | if (WIN32) |
90 | set(SSL_POSTFIX -${SSL_MAJOR_VERSION}) | 90 | set(SSL_POSTFIX -${SSL_MAJOR_VERSION} PARENT_SCOPE) |
91 | endif() | 91 | endif() |
92 | set_target_properties(ssl PROPERTIES | 92 | set_target_properties(ssl PROPERTIES |
93 | OUTPUT_NAME ssl${SSL_POSTFIX} | 93 | OUTPUT_NAME ssl${SSL_POSTFIX} |