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)
|
2011-01-18 17:18:38 +01:00
|
|
|
target_link_libraries(benchmark ${libs})
|
2009-06-28 23:50:27 +02:00
|
|
|
|
|
|
|
add_executable(ssl_cert_test ssl_cert_test.c)
|
2011-01-18 17:18:38 +01:00
|
|
|
target_link_libraries(ssl_cert_test ${libs})
|
2009-06-28 23:50:27 +02:00
|
|
|
|
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)
|
|
|
|
target_link_libraries(zeroize ${libs})
|
|
|
|
|
2018-04-17 17:02:17 +02:00
|
|
|
install(TARGETS selftest benchmark ssl_cert_test udp_proxy
|
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)
|