2020-06-05 11:15:31 +02:00
|
|
|
set(executables
|
|
|
|
generic_sum
|
|
|
|
hello
|
2022-02-01 09:38:26 +01:00
|
|
|
md_hmac_demo
|
2020-06-05 11:15:31 +02:00
|
|
|
)
|
2009-06-28 23:50:27 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables)
|
2020-06-05 16:00:22 +02:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
2020-10-13 17:30:41 +02:00
|
|
|
target_link_libraries(${exe} ${mbedcrypto_target})
|
2021-06-15 11:43:33 +02:00
|
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../tests/include)
|
2020-06-05 11:15:31 +02:00
|
|
|
endforeach()
|
2011-01-21 11:21:11 +01:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables}
|
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)
|