mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2024-12-26 18:20:21 +00:00
5096b4cb4b
This reverts commit 939ce9d0d5
.
Build mbedtls_test library of objects to link
with TLS and x509 test suites and programs
with mbedtls framework not TF-PSA-Crypto
one (when it will be there).
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
29 lines
812 B
CMake
29 lines
812 B
CMake
set(libs
|
|
${mbedx509_target}
|
|
)
|
|
|
|
set(executables
|
|
cert_app
|
|
cert_req
|
|
cert_write
|
|
crl_app
|
|
load_roots
|
|
req_app
|
|
)
|
|
add_dependencies(${programs_target} ${executables})
|
|
|
|
foreach(exe IN LISTS executables)
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
|
set_base_compile_options(${exe})
|
|
target_link_libraries(${exe} ${libs} ${CMAKE_THREAD_LIBS_INIT})
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../framework/tests/include)
|
|
endforeach()
|
|
|
|
target_link_libraries(cert_app ${mbedtls_target})
|
|
# For mbedtls_timing_get_timer()
|
|
target_link_libraries(load_roots ${mbedtls_target})
|
|
|
|
install(TARGETS ${executables}
|
|
DESTINATION "bin"
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|