aboutsummaryrefslogtreecommitdiff
path: root/src/supplemental/tls/wolfssl
diff options
context:
space:
mode:
Diffstat (limited to 'src/supplemental/tls/wolfssl')
-rw-r--r--src/supplemental/tls/wolfssl/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/supplemental/tls/wolfssl/CMakeLists.txt b/src/supplemental/tls/wolfssl/CMakeLists.txt
index 897fe929..7b129d9c 100644
--- a/src/supplemental/tls/wolfssl/CMakeLists.txt
+++ b/src/supplemental/tls/wolfssl/CMakeLists.txt
@@ -1,5 +1,5 @@
#
-# Copyright 2024 Staysail Systems, Inc. <info@staysail.tech>
+# Copyright 2025 Staysail Systems, Inc. <info@staysail.tech>
#
# This software is supplied under the terms of the MIT License, a
# copy of which should be located in the distribution where this
@@ -24,10 +24,10 @@ if (NNG_TLS_ENGINE STREQUAL "wolf")
# We want to prefer config mode over our local find package.
if (NOT (DEFINED CMAKE_FIND_PACKAGE_PREFER_CONFIG))
set(CMAKE_FIND_PACKAGE_PREFER_CONFIG TRUE)
- find_package(wolfSSL REQUIRED)
+ nng_find_package(wolfSSL)
unset(CMAKE_FIND_PACKAGE_PREFER_CONFIG)
else()
- find_package(wolfSSL REQUIRED)
+ nng_find_package(wolfSSL)
endif()
nng_link_libraries_public(wolfssl::wolfssl)
endif()