- Added util/CMakelists.txt

This commit is contained in:
Paul Bakker 2012-09-25 11:45:38 +00:00
parent 29b64761fd
commit 4811b56524

View File

@ -0,0 +1,10 @@
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)