2012-09-25 11:45:38 +00:00
|
|
|
set(libs
|
2024-10-25 16:01:14 +02:00
|
|
|
${tfpsacrypto_target}
|
2024-10-15 12:03:11 +01:00
|
|
|
${mbedx509_target}
|
2012-09-25 11:45:38 +00:00
|
|
|
)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables
|
|
|
|
pem2der
|
|
|
|
strerror
|
|
|
|
)
|
2024-09-14 12:13:16 +02:00
|
|
|
add_dependencies(${programs_target} ${executables})
|
2012-09-25 11:45:38 +00:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables)
|
2024-11-14 11:15:40 +01:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:tf_psa_crypto_test>)
|
2024-10-07 16:17:07 +02:00
|
|
|
set_base_compile_options(${exe})
|
2023-12-15 17:14:34 +00:00
|
|
|
target_link_libraries(${exe} ${libs} ${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 11:15:31 +02:00
|
|
|
endforeach()
|
2013-08-25 14:50:09 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables}
|
2012-09-25 11:45:38 +00:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|