2011-01-18 16:18:38 +00:00
|
|
|
set(libs
|
2015-06-25 07:20:03 +00:00
|
|
|
mbedtls
|
2011-01-18 16:18:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2012-07-03 15:10:33 +00:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
set(executables_libs
|
|
|
|
selftest
|
|
|
|
udp_proxy
|
|
|
|
)
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
set(executables_mbedcrypto
|
|
|
|
benchmark
|
|
|
|
query_compile_time_config
|
|
|
|
zeroize
|
|
|
|
)
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2018-03-15 09:16:24 +00:00
|
|
|
if(TEST_CPP)
|
2020-06-05 09:15:31 +00:00
|
|
|
list(APPEND executables_mbedcrypto cpp_dummy_build)
|
2018-03-15 09:16:24 +00:00
|
|
|
endif()
|
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
foreach(exe IN LISTS executables_libs executables_mbedcrypto)
|
2020-06-05 14:00:22 +00:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
2014-09-04 12:55:28 +00:00
|
|
|
|
2020-06-05 09:15:31 +00: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()
|
|
|
|
target_link_libraries(${exe} mbedcrypto)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
2017-10-24 20:10:45 +00:00
|
|
|
|
2020-06-05 12:02:43 +00:00
|
|
|
target_sources(query_compile_time_config PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/query_config.c)
|
2018-10-26 17:41:08 +00:00
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
install(TARGETS ${executables_libs} ${executables_mbedcrypto}
|
2011-01-05 15:07:54 +00:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|