mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-24 15:55:36 +00:00
Add lib target to library/CMakeLists.txt
This commit is contained in:
parent
851dcc96d4
commit
63c4fda9cf
|
@ -136,10 +136,18 @@ endif(USE_SHARED_MBEDTLS_LIBRARY)
|
||||||
|
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
add_custom_target(polarssl
|
add_custom_target(polarssl
|
||||||
DEPENDS mbedtls # TODO: and mbedtls_static is shared is defined
|
DEPENDS mbedtls
|
||||||
COMMAND ${CMAKE_SOURCE_DIR}/scripts/polarssl_symlinks.sh ${CMAKE_BINARY_DIR}/library
|
COMMAND ${CMAKE_SOURCE_DIR}/scripts/polarssl_symlinks.sh ${CMAKE_BINARY_DIR}/library
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_custom_target(lib
|
||||||
|
DEPENDS polarssl
|
||||||
|
)
|
||||||
|
|
||||||
|
set_directory_properties(PROPERTIES
|
||||||
|
ADDITIONAL_MAKE_CLEAN_FILES "${CMAKE_BINARY_DIR}/library/libpolarssl.a"
|
||||||
|
)
|
||||||
|
|
||||||
if(USE_STATIC_MBEDTLS_LIBRARY AND USE_SHARED_MBEDTLS_LIBRARY)
|
if(USE_STATIC_MBEDTLS_LIBRARY AND USE_SHARED_MBEDTLS_LIBRARY)
|
||||||
add_dependencies(polarssl mbedtls_static)
|
add_dependencies(polarssl mbedtls_static)
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in a new issue