Manuel Pégourié-Gonnard | 6fdc9e8 | 2022-01-31 13:27:39 +0100 | [diff] [blame] | 1 | set(executables |
Manuel Pégourié-Gonnard | 29088a4 | 2022-02-01 09:38:26 +0100 | [diff] [blame] | 2 | cipher_aead_demo |
Manuel Pégourié-Gonnard | 6fdc9e8 | 2022-01-31 13:27:39 +0100 | [diff] [blame] | 3 | ) |
Gilles Peskine | 5dab92e | 2024-09-14 12:13:16 +0200 | [diff] [blame] | 4 | add_dependencies(${programs_target} ${executables}) |
Manuel Pégourié-Gonnard | 6fdc9e8 | 2022-01-31 13:27:39 +0100 | [diff] [blame] | 5 | |
| 6 | foreach(exe IN LISTS executables) |
Ronald Cron | 939ce9d | 2024-11-14 11:15:40 +0100 | [diff] [blame] | 7 | add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:tf_psa_crypto_test>) |
Ronald Cron | b247898 | 2024-10-07 16:17:07 +0200 | [diff] [blame] | 8 | set_base_compile_options(${exe}) |
Ronald Cron | b7d0e52 | 2024-10-25 16:01:14 +0200 | [diff] [blame] | 9 | target_link_libraries(${exe} ${tfpsacrypto_target} ${CMAKE_THREAD_LIBS_INIT}) |
David Horstmann | 5b93d97 | 2024-10-31 15:36:05 +0000 | [diff] [blame] | 10 | target_include_directories(${exe} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../../framework/tests/include) |
Manuel Pégourié-Gonnard | 6fdc9e8 | 2022-01-31 13:27:39 +0100 | [diff] [blame] | 11 | endforeach() |
| 12 | |
| 13 | install(TARGETS ${executables} |
| 14 | DESTINATION "bin" |
| 15 | PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) |