mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 21:25:38 +01:00
- Modified CMakeLists to support zlib
This commit is contained in:
parent
2770fbd651
commit
92eeea4627
@ -17,6 +17,8 @@ endif(CMAKE_BUILD_TYPE STREQUAL "Coverage")
|
|||||||
|
|
||||||
option(USE_PKCS11_HELPER_LIBRARY "Build PolarSSL with the pkcs11-helper library." OFF)
|
option(USE_PKCS11_HELPER_LIBRARY "Build PolarSSL with the pkcs11-helper library." OFF)
|
||||||
|
|
||||||
|
option(ENABLE_ZLIB_SUPPORT "Build PolarSSL with zlib library." OFF)
|
||||||
|
|
||||||
if(LIB_INSTALL_DIR)
|
if(LIB_INSTALL_DIR)
|
||||||
else()
|
else()
|
||||||
set(LIB_INSTALL_DIR lib)
|
set(LIB_INSTALL_DIR lib)
|
||||||
@ -24,6 +26,14 @@ endif()
|
|||||||
|
|
||||||
include_directories(include/)
|
include_directories(include/)
|
||||||
|
|
||||||
|
if(ENABLE_ZLIB_SUPPORT)
|
||||||
|
find_package(ZLIB)
|
||||||
|
|
||||||
|
if(ZLIB_FOUND)
|
||||||
|
include_directories(ZLIB_INCLUDE_DIR)
|
||||||
|
endif(ZLIB_FOUND)
|
||||||
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
add_subdirectory(library)
|
add_subdirectory(library)
|
||||||
add_subdirectory(include)
|
add_subdirectory(include)
|
||||||
|
|
||||||
|
@ -6,6 +6,10 @@ if(USE_PKCS11_HELPER_LIBRARY)
|
|||||||
set(libs ${libs} pkcs11-helper)
|
set(libs ${libs} pkcs11-helper)
|
||||||
endif(USE_PKCS11_HELPER_LIBRARY)
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
||||||
|
|
||||||
|
if(ENABLE_ZLIB_SUPPORT)
|
||||||
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
||||||
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
add_executable(ssl_client1 ssl_client1.c)
|
add_executable(ssl_client1 ssl_client1.c)
|
||||||
target_link_libraries(ssl_client1 ${libs})
|
target_link_libraries(ssl_client1 ${libs})
|
||||||
|
|
||||||
|
@ -8,6 +8,10 @@ if(USE_PKCS11_HELPER_LIBRARY)
|
|||||||
set(libs ${libs} pkcs11-helper)
|
set(libs ${libs} pkcs11-helper)
|
||||||
endif(USE_PKCS11_HELPER_LIBRARY)
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
||||||
|
|
||||||
|
if(ENABLE_ZLIB_SUPPORT)
|
||||||
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
||||||
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
add_executable(selftest selftest.c)
|
add_executable(selftest selftest.c)
|
||||||
target_link_libraries(selftest ${libs})
|
target_link_libraries(selftest ${libs})
|
||||||
|
|
||||||
|
@ -6,6 +6,10 @@ if(USE_PKCS11_HELPER_LIBRARY)
|
|||||||
set(libs ${libs} pkcs11-helper)
|
set(libs ${libs} pkcs11-helper)
|
||||||
endif(USE_PKCS11_HELPER_LIBRARY)
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
||||||
|
|
||||||
|
if(ENABLE_ZLIB_SUPPORT)
|
||||||
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
||||||
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
add_executable(cert_app cert_app.c)
|
add_executable(cert_app cert_app.c)
|
||||||
target_link_libraries(cert_app ${libs})
|
target_link_libraries(cert_app ${libs})
|
||||||
|
|
||||||
|
@ -6,6 +6,10 @@ if(USE_PKCS11_HELPER_LIBRARY)
|
|||||||
set(libs ${libs} pkcs11-helper)
|
set(libs ${libs} pkcs11-helper)
|
||||||
endif(USE_PKCS11_HELPER_LIBRARY)
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
||||||
|
|
||||||
|
if(ENABLE_ZLIB_SUPPORT)
|
||||||
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
||||||
|
endif(ENABLE_ZLIB_SUPPORT)
|
||||||
|
|
||||||
function(add_test_suite suite_name)
|
function(add_test_suite suite_name)
|
||||||
if(ARGV1)
|
if(ARGV1)
|
||||||
set(data_name ${ARGV1})
|
set(data_name ${ARGV1})
|
||||||
|
Loading…
Reference in New Issue
Block a user