2011-01-18 16:18:38 +00:00
|
|
|
set(libs
|
2018-11-02 10:13:30 +00:00
|
|
|
mbedcrypto
|
2011-01-18 16:18:38 +00:00
|
|
|
)
|
|
|
|
|
2009-06-28 21:50:27 +00:00
|
|
|
add_executable(selftest selftest.c)
|
2011-01-18 16:18:38 +00:00
|
|
|
target_link_libraries(selftest ${libs})
|
2009-06-28 21:50:27 +00:00
|
|
|
|
|
|
|
add_executable(benchmark benchmark.c)
|
2011-01-18 16:18:38 +00:00
|
|
|
target_link_libraries(benchmark ${libs})
|
2009-06-28 21:50:27 +00:00
|
|
|
|
2018-03-15 09:16:24 +00:00
|
|
|
if(TEST_CPP)
|
2018-06-26 10:57:55 +00:00
|
|
|
add_executable(cpp_dummy_build cpp_dummy_build.cpp)
|
|
|
|
target_link_libraries(cpp_dummy_build ${libs})
|
2018-03-15 09:16:24 +00:00
|
|
|
endif()
|
|
|
|
|
2017-10-24 20:10:45 +00:00
|
|
|
add_executable(zeroize zeroize.c)
|
|
|
|
target_link_libraries(zeroize ${libs})
|
|
|
|
|
2018-10-30 21:21:08 +00:00
|
|
|
add_executable(query_compile_time_config query_compile_time_config.c)
|
2019-02-28 11:37:23 +00:00
|
|
|
target_sources(query_compile_time_config PUBLIC query_config.c)
|
2018-10-26 17:41:08 +00:00
|
|
|
target_link_libraries(query_compile_time_config ${libs})
|
|
|
|
|
2018-11-02 10:42:02 +00:00
|
|
|
install(TARGETS selftest benchmark query_compile_time_config
|
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)
|