mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-02-19 08:43:02 +00:00
- Adapted CMake files for the PKCS#11 support
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
set(libs
|
||||
polarssl
|
||||
)
|
||||
|
||||
if(USE_PKCS11_HELPER_LIBRARY)
|
||||
set(libs ${libs} pkcs11-helper)
|
||||
endif(USE_PKCS11_HELPER_LIBRARY)
|
||||
|
||||
add_executable(cert_app cert_app.c)
|
||||
target_link_libraries(cert_app polarssl)
|
||||
target_link_libraries(cert_app ${libs})
|
||||
|
||||
INSTALL(TARGETS cert_app
|
||||
DESTINATION "bin"
|
||||
|
||||
Reference in New Issue
Block a user