From 081cee6207dc01747dd968b06637ab9ee2cdc496 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Fri, 7 Jul 2023 15:02:16 +0300 Subject: fixes #681, allow override of library POSTFIX for nested builds --- ssl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssl') 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() export_symbol(ssl ${CMAKE_CURRENT_SOURCE_DIR}/ssl.sym) target_link_libraries(ssl crypto ${PLATFORM_LIBS}) if (WIN32) - set(SSL_POSTFIX -${SSL_MAJOR_VERSION}) + set(SSL_POSTFIX -${SSL_MAJOR_VERSION} PARENT_SCOPE) endif() set_target_properties(ssl PROPERTIES OUTPUT_NAME ssl${SSL_POSTFIX} -- cgit v1.2.3-55-g6feb