2011-01-18 17:18:38 +01:00
|
|
|
set(libs
|
2020-10-13 17:30:41 +02:00
|
|
|
${mbedx509_target}
|
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)
|
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
set(executables
|
|
|
|
cert_app
|
|
|
|
cert_req
|
|
|
|
cert_write
|
|
|
|
crl_app
|
|
|
|
req_app
|
|
|
|
)
|
2013-09-09 15:35:10 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
foreach(exe IN LISTS executables)
|
2020-06-05 16:00:22 +02:00
|
|
|
add_executable(${exe} ${exe}.c $<TARGET_OBJECTS:mbedtls_test>)
|
2020-06-05 11:15:31 +02:00
|
|
|
target_link_libraries(${exe} ${libs})
|
|
|
|
endforeach()
|
2013-08-25 10:34:32 +02:00
|
|
|
|
2020-10-13 17:30:41 +02:00
|
|
|
target_link_libraries(cert_app ${mbedtls_target})
|
2013-09-06 09:55:26 +02:00
|
|
|
|
2020-06-05 11:15:31 +02:00
|
|
|
install(TARGETS ${executables}
|
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)
|