1
0
Fork 0
mirror of https://github.com/yuzu-emu/mbedtls.git synced 2025-03-07 02:19:51 +00:00
mbedtls/programs/util/CMakeLists.txt

11 lines
262 B
CMake
Raw Normal View History

2012-09-25 11:45:38 +00:00
set(libs
polarssl
)
add_executable(strerror strerror.c)
target_link_libraries(strerror ${libs})
install(TARGETS strerror
DESTINATION "bin"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)