2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2015-01-27 16:44:46 +01:00
|
|
|
mbedtls
|
2011-01-18 17:18:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
set(libs ${libs} pkcs11-helper)
|
|
|
|
endif(USE_PKCS11_HELPER_LIBRARY)
|
|
|
|
|
2012-07-03 17:10:33 +02:00
|
|
|
if(ENABLE_ZLIB_SUPPORT)
|
|
|
|
set(libs ${libs} ${ZLIB_LIBRARIES})
|
|
|
|
endif(ENABLE_ZLIB_SUPPORT)
|
|
|
|
|
2010-03-18 21:11:58 +01:00
|
|
|
add_executable(cert_app cert_app.c)
|
2011-01-18 17:18:38 +01:00
|
|
|
target_link_libraries(cert_app ${libs})
|
2011-01-05 16:07:54 +01:00
|
|
|
|
2011-02-12 16:27:28 +01:00
|
|
|
add_executable(crl_app crl_app.c)
|
|
|
|
target_link_libraries(crl_app ${libs})
|
|
|
|
|
2013-09-09 15:35:10 +02:00
|
|
|
add_executable(req_app req_app.c)
|
|
|
|
target_link_libraries(req_app ${libs})
|
|
|
|
|
2013-08-25 10:34:32 +02:00
|
|
|
add_executable(cert_req cert_req.c)
|
|
|
|
target_link_libraries(cert_req ${libs})
|
|
|
|
|
2013-09-06 09:55:26 +02:00
|
|
|
add_executable(cert_write cert_write.c)
|
|
|
|
target_link_libraries(cert_write ${libs})
|
|
|
|
|
2013-09-09 15:35:10 +02:00
|
|
|
install(TARGETS cert_app crl_app req_app cert_req cert_write
|
2011-01-05 16:07:54 +01:00
|
|
|
DESTINATION "bin"
|
|
|
|
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE)
|