Skip to content

Commit

Permalink
Update FindBotan.cmake
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ultralapse authored and droidmonkey committed Nov 23, 2023
1 parent a3717c7 commit 6e8fa34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/FindBotan.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6e8fa34

Please sign in to comment.