From 6e8fa34b1e2e3dd4a2d57cc5e21259f558ac0e24 Mon Sep 17 00:00:00 2001 From: Lapse <136134023+ultralapse@users.noreply.github.com> Date: Tue, 21 Nov 2023 18:59:27 -0500 Subject: [PATCH] Update FindBotan.cmake The recent debug library is called botan-3.lib, which is unable to be found by this since BOTAN_NAMES_DEBUG does not contain the keyword "botan-3". This commit adds that keyword. --- cmake/FindBotan.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindBotan.cmake b/cmake/FindBotan.cmake index 38fed2b07..94d9df98a 100644 --- a/cmake/FindBotan.cmake +++ b/cmake/FindBotan.cmake @@ -13,7 +13,7 @@ include(FindPackageHandleStandardArgs) set(BOTAN_VERSIONS botan-3 botan-2) set(BOTAN_NAMES botan-3 botan-2 botan) -set(BOTAN_NAMES_DEBUG botand-3 botand-2 botand botan) +set(BOTAN_NAMES_DEBUG botand-3 botand-2 botand botan botan-3) find_path( BOTAN_INCLUDE_DIR