diff options
Diffstat (limited to 'lib/mbedtls-2.27.0/programs/hash/CMakeLists.txt')
-rw-r--r-- | lib/mbedtls-2.27.0/programs/hash/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/mbedtls-2.27.0/programs/hash/CMakeLists.txt b/lib/mbedtls-2.27.0/programs/hash/CMakeLists.txt new file mode 100644 index 0000000..b2f2a1f --- /dev/null +++ b/lib/mbedtls-2.27.0/programs/hash/CMakeLists.txt @@ -0,0 +1,13 @@ +set(executables + generic_sum + hello +) + +foreach(exe IN LISTS executables) + add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>) + target_link_libraries(${exe} ${mbedcrypto_target}) +endforeach() + +install(TARGETS ${executables} + DESTINATION "bin" + PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE) |