2012-09-25 11:45:38 +00:00
|
|
|
set(libs
|
2024-10-25 14:01:14 +00:00
|
|
|
${tfpsacrypto_target}
|
2024-10-15 11:03:11 +00:00
|
|
|
${mbedx509_target}
|
2012-09-25 11:45:38 +00:00
|
|
|
)
|
|
|
|
|
2020-06-05 09:15:31 +00:00
|
|
|
set(executables
|
|
|
|
pem2der
|
|
|
|
strerror
|
|
|
|
)
|
2024-09-14 10:13:16 +00:00
|
|
|
add_dependencies(${programs_target} ${executables})
|
2012-09-25 11:45:38 +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})
|
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 09:15:31 +00:00
|
|
|
endforeach()
|
2013-08-25 12:50:09 +00:00
|
|
|
|
2020-06-05 09:15:31 +00: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)
|