mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-28 02:06:25 +01:00
- Adapted CMake files for the PKCS#11 support
This commit is contained in:
parent
d61e7d98cb
commit
b06819bb5d
6 changed files with 44 additions and 9 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue