2012-09-25 13:45:38 +02:00
|
|
|
set(libs
|
2020-02-11 16:51:34 +01:00
|
|
|
mbedcrypto
|
2012-09-25 13:45:38 +02:00
|
|
|
)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables
|
|
|
|
pem2der
|
|
|
|
strerror
|
|
|
|
)
|
2012-09-25 13:45:38 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables)
|
|
|
|
add_executable(${exe} ${exe}.c)
|
|
|
|
target_link_libraries(${exe} ${libs})
|
|
|
|
endforeach()
|
2013-08-25 14:50:09 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables}
|
2012-09-25 13:45:38 +02:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|