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
|
|
|
)
|
|
|
|
|
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
|
|
|
|
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)
|
|
|
|
target_link_libraries(cpp_dummy_build ${libs})
|
2018-03-15 10:16:24 +01:00
|
|
|
endif()
|
|
|
|
|
2017-10-24 22:10:45 +02:00
|
|
|
add_executable(zeroize zeroize.c)
|
|
|
|
target_link_libraries(zeroize ${libs})
|
|
|
|
|
2018-10-30 22:21:08 +01:00
|
|
|
add_executable(query_compile_time_config query_compile_time_config.c)
|
2019-02-28 12:37:23 +01:00
|
|
|
target_sources(query_compile_time_config PUBLIC query_config.c)
|
2018-10-26 19:41:08 +02:00
|
|
|
target_link_libraries(query_compile_time_config ${libs})
|
|
|
|
|
2018-11-02 11:42:02 +01:00
|
|
|
install(TARGETS selftest benchmark 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)
|