1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

programs: Link to tests common code

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2020-06-05 16:00:22 +02:00
parent ddaf99c9d4
commit 8dc0af2d4b
66 changed files with 259 additions and 232 deletions

View File

@ -5,7 +5,7 @@ set(executables
)
foreach(exe IN LISTS executables)
add_executable(${exe} ${exe}.c)
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
target_link_libraries(${exe} mbedcrypto)
endforeach()