mbedtls/programs/hash/CMakeLists.txt

10 lines
328 B
CMake
Raw Normal View History

add_executable(hello hello.c)
target_link_libraries(hello mbedcrypto)
add_executable(generic_sum generic_sum.c)
target_link_libraries(generic_sum mbedcrypto)
2015-05-28 15:51:21 +02:00
install(TARGETS hello generic_sum
DESTINATION "bin"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)