From 178e8ba2d1bed80240d4714bd7850e4258ea4f68 Mon Sep 17 00:00:00 2001 From: Jan Venekamp <1422460+jan2000@users.noreply.github.com> Date: Thu, 15 Aug 2024 20:43:33 +0200 Subject: [PATCH] cmake: fix find rustls Follow-up to 2784801977e81f68c6f87f9509e64f332d74acab #14545 Closes #14567 --- CMake/Findrustls.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/Findrustls.cmake b/CMake/Findrustls.cmake index f1358fc156..370d511b4a 100644 --- a/CMake/Findrustls.cmake +++ b/CMake/Findrustls.cmake @@ -41,7 +41,7 @@ find_path(RUSTLS_INCLUDE_DIR "rustls.h" ${PC_RUSTLS_INCLUDE_DIRS} ) -find_library(RUSTLS_LIBRARY "rustls") +find_library(RUSTLS_LIBRARY "rustls" HINTS ${PC_RUSTLS_LIBDIR} ${PC_RUSTLS_LIBRARY_DIRS}