2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2015-06-25 09:20:03 +02:00
|
|
|
mbedtls
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2012-07-03 17:10:33 +02:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2009-06-28 23:50:27 +02:00
|
|
|
add_executable(selftest selftest.c)
|
2011-01-18 17:18:38 +01:00
|
|
|
target_link_libraries(selftest ${libs})
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
add_executable(benchmark benchmark.c)
|
2020-02-11 16:51:34 +01:00
|
|
|
target_link_libraries(benchmark mbedcrypto)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2018-03-15 10:16:24 +01:00
|
|
|
if(TEST_CPP)
|
2018-06-26 12:57:55 +02:00
|
|
|
add_executable(cpp_dummy_build cpp_dummy_build.cpp)
|
2020-02-11 16:51:34 +01:00
|
|
|
target_link_libraries(cpp_dummy_build mbedcrypto)
|
2018-03-15 10:16:24 +01:00
|
|
|
endif()
|
|
|
|
|
2014-09-04 14:55:28 +02:00
|
|
|
add_executable(udp_proxy udp_proxy.c)
|
|
|
|
target_link_libraries(udp_proxy ${libs})
|
|
|
|
|
2017-10-24 22:10:45 +02:00
|
|
|
add_executable(zeroize zeroize.c)
|
2020-02-11 16:51:34 +01:00
|
|
|
target_link_libraries(zeroize mbedcrypto)
|
2017-10-24 22:10:45 +02:00
|
|
|
|
2018-10-30 22:21:08 +01:00
|
|
|
add_executable(query_compile_time_config query_compile_time_config.c)
|
2020-06-05 14:02:43 +02:00
|
|
|
target_sources(query_compile_time_config PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/query_config.c)
|
2020-02-11 16:51:34 +01:00
|
|
|
target_link_libraries(query_compile_time_config mbedcrypto)
|
2018-10-26 19:41:08 +02:00
|
|
|
|
2019-04-07 15:42:25 +02:00
|
|
|
install(TARGETS selftest benchmark udp_proxy query_compile_time_config
|
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)
|