From 64811f0457c7c5b39241c53a5140b9aed60e46a9 Mon Sep 17 00:00:00 2001 From: Lord-Grey Date: Thu, 14 Nov 2024 23:04:49 +0100 Subject: [PATCH] Windows add bcrypt until mbedtls is fixed (https://github.com/Mbed-TLS/mbedtls/pull/9554) --- libsrc/leddevice/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libsrc/leddevice/CMakeLists.txt b/libsrc/leddevice/CMakeLists.txt index 6a03e3b8..e281ca97 100644 --- a/libsrc/leddevice/CMakeLists.txt +++ b/libsrc/leddevice/CMakeLists.txt @@ -115,7 +115,11 @@ if(ENABLE_DEV_NETWORK) if(NOT DEFAULT_USE_SYSTEM_MBEDTLS_LIBS) if(MBEDTLS_LIBRARIES) include_directories(${MBEDTLS_INCLUDE_DIR}) - target_link_libraries(leddevice ${MBEDTLS_LIBRARIES}) + target_link_libraries( + leddevice + ${MBEDTLS_LIBRARIES} + $<$:bcrypt.lib> + ) target_include_directories(leddevice PRIVATE ${MBEDTLS_INCLUDE_DIR}) endif (MBEDTLS_LIBRARIES) endif()