From ab6d1149a3c1d7b0bd0f0af1695d7c2939cb1ebe Mon Sep 17 00:00:00 2001 From: oltolm Date: Sun, 5 Jan 2025 14:21:36 +0100 Subject: [PATCH] cmake: fix wolfssl --- 3rdparty/wolfssl/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/3rdparty/wolfssl/CMakeLists.txt b/3rdparty/wolfssl/CMakeLists.txt index f74f604269..cf1a66a1f5 100644 --- a/3rdparty/wolfssl/CMakeLists.txt +++ b/3rdparty/wolfssl/CMakeLists.txt @@ -22,6 +22,5 @@ else() add_subdirectory(wolfssl EXCLUDE_FROM_ALL) - target_compile_definitions(wolfssl PUBLIC WOLFSSL_DES_ECB HAVE_WRITE_DUP) - target_compile_definitions(wolfssl PUBLIC FP_MAX_BITS=8192) + target_compile_definitions(wolfssl PUBLIC WOLFSSL_DES_ECB HAVE_WRITE_DUP FP_MAX_BITS=8192 WOLFSSL_NO_OPTIONS_H) endif()