mirror of
https://github.com/QuasarApp/openssl-cmake.git
synced 2025-04-28 18:54:35 +00:00
WINDOWS: rename output
This commit is contained in:
parent
3251ab8531
commit
c91f710465
@ -274,6 +274,14 @@ if( ANDROID )
|
||||
set_target_properties( crypto PROPERTIES OUTPUT_NAME "crypto_1_1" )
|
||||
endif()
|
||||
|
||||
if( MSVC )
|
||||
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
||||
set_target_properties( crypto PROPERTIES OUTPUT_NAME "crypto-1_1-x64" )
|
||||
elseif( CMAKE_SIZEOF_VOID_P EQUAL 4 )
|
||||
set_target_properties( crypto PROPERTIES OUTPUT_NAME "crypto-1_1" )
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install( TARGETS crypto
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
|
@ -50,6 +50,14 @@ if( ANDROID )
|
||||
set_target_properties( ssl PROPERTIES OUTPUT_NAME "ssl_1_1" )
|
||||
endif()
|
||||
|
||||
if( MSVC )
|
||||
if( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
||||
set_target_properties( ssl PROPERTIES OUTPUT_NAME "ssl-1_1-x64" )
|
||||
elseif( CMAKE_SIZEOF_VOID_P EQUAL 4 )
|
||||
set_target_properties( ssl PROPERTIES OUTPUT_NAME "ssl-1_1" )
|
||||
endif()
|
||||
endif()
|
||||
|
||||
install( TARGETS ssl
|
||||
RUNTIME DESTINATION bin
|
||||
LIBRARY DESTINATION lib
|
||||
|
Loading…
x
Reference in New Issue
Block a user