From 7e0a4fb7d0c548231b2dc104054170cb6bebea96 Mon Sep 17 00:00:00 2001 From: tuxmaster5000 <837503+tuxmaster5000@users.noreply.github.com> Date: Fri, 24 Jul 2020 19:00:48 +0200 Subject: [PATCH] Fix for #2168 (#2299) --- tools/FindCatch.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/FindCatch.cmake b/tools/FindCatch.cmake index 9d490c5aa..ad4a4a593 100644 --- a/tools/FindCatch.cmake +++ b/tools/FindCatch.cmake @@ -38,7 +38,7 @@ function(_download_catch version destination_dir) endfunction() # Look for catch locally -find_path(CATCH_INCLUDE_DIR NAMES catch.hpp PATH_SUFFIXES catch) +find_path(CATCH_INCLUDE_DIR NAMES catch.hpp PATH_SUFFIXES catch2) if(CATCH_INCLUDE_DIR) _get_catch_version() endif()