2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2020-10-13 17:30:41 +02:00
|
|
|
${mbedtls_target}
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables_libs
|
|
|
|
selftest
|
|
|
|
udp_proxy
|
|
|
|
)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables_mbedcrypto
|
|
|
|
benchmark
|
|
|
|
query_compile_time_config
|
|
|
|
zeroize
|
|
|
|
)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2018-03-15 10:16:24 +01:00
|
|
|
if(TEST_CPP)
|
2020-06-05 11:15:31 +02:00
|
|
|
list(APPEND executables_mbedcrypto cpp_dummy_build)
|
2018-03-15 10:16:24 +01:00
|
|
|
endif()
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables_libs executables_mbedcrypto)
|
2020-11-18 23:07:24 +01:00
|
|
|
set(extra_sources "")
|
|
|
|
if(exe STREQUAL "query_compile_time_config")
|
|
|
|
list(APPEND extra_sources
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/query_config.c)
|
|
|
|
endif()
|
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>
|
|
|
|
${extra_sources})
|
2014-09-04 14:55:28 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
# This emulates "if ( ... IN_LIST ... )" which becomes available in CMake 3.3
|
|
|
|
list(FIND executables_libs ${exe} exe_index)
|
|
|
|
if (${exe_index} GREATER -1)
|
|
|
|
target_link_libraries(${exe} ${libs})
|
|
|
|
else()
|
2020-10-13 17:30:41 +02:00
|
|
|
target_link_libraries(${exe} ${mbedcrypto_target})
|
2020-06-05 11:15:31 +02:00
|
|
|
endif()
|
|
|
|
endforeach()
|
2017-10-24 22:10:45 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables_libs} ${executables_mbedcrypto}
|
2011-01-05 16:07:54 +01:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|