mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 23:21:04 +00:00
MinGW32 static build should link to windows libs and libz
This commit is contained in:
parent
b000f82d76
commit
8cb73200e1
|
@ -73,6 +73,12 @@ endif()
|
|||
if(USE_STATIC_POLARSSL_LIBRARY)
|
||||
add_library(${polarssl_static_target} STATIC ${src})
|
||||
set_target_properties(${polarssl_static_target} PROPERTIES OUTPUT_NAME polarssl)
|
||||
target_link_libraries(${polarssl_static_target} ${libs})
|
||||
|
||||
if(ZLIB_FOUND)
|
||||
target_link_libraries(${polarssl_static_target} ${ZLIB_LIBRARIES})
|
||||
endif(ZLIB_FOUND)
|
||||
|
||||
|
||||
install(TARGETS ${polarssl_static_target}
|
||||
DESTINATION ${LIB_INSTALL_DIR}
|
||||
|
|
Loading…
Reference in a new issue