2020-06-05 09:15:31 +00:00
|
|
|
set(executables
|
|
|
|
gen_entropy
|
|
|
|
gen_random_ctr_drbg
|
|
|
|
)
|
2024-09-14 10:13:16 +00:00
|
|
|
add_dependencies(${programs_target} ${executables})
|
2011-01-27 16:50:02 +00:00
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
foreach(exe IN LISTS executables)
|
2024-11-14 10:15:40 +00:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:tf_psa_crypto_test>)
|
2024-10-07 14:17:07 +00:00
|
|
|
set_base_compile_options(${exe})
|
2024-10-25 14:01:14 +00:00
|
|
|
target_link_libraries(${exe} ${tfpsacrypto_target} ${CMAKE_THREAD_LIBS_INIT})
|
2024-10-31 15:36:05 +00:00
|
|
|
target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../framework/tests/include)
|
2020-06-05 09:15:31 +00:00
|
|
|
endforeach()
|
2011-12-03 21:45:14 +00:00
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
install(TARGETS ${executables}
|
2011-01-27 16:50:02 +00:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|