summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMikael Magnusson <mikma@users.sourceforge.net>2024-09-14 21:56:00 +0200
committerMikael Magnusson <mikma@users.sourceforge.net>2024-09-14 21:56:00 +0200
commit267e6f2aefbaf09c947965c7f976907d8e6f1c63 (patch)
treef6c07a30d4b6190e96d19126e3a44ac28661c919
parentbbbd066221b53e8d95b93decaa376216c5dbf3e6 (diff)
crypto: fix crypto-mbedtls
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9eec817..67a1b10 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -296,7 +296,7 @@ if(ZLIB_SUPPORT)
target_link_libraries(zlib_lib ZLIB::ZLIB)
endif()
-if(MBEDTLS_SUPPORT)
+if(CRYPTO_MBEDTLS_SUPPORT)
set(LIBRARIES ${LIBRARIES} crypto_mbedtls_lib)
add_library(crypto_mbedtls_lib MODULE lib/crypto-mbedtls.c)
set_target_properties(crypto_mbedtls_lib PROPERTIES OUTPUT_NAME crypto-mbedtls PREFIX "")