From 6a6ebc2cc93dd07de000a429f3359334c7338d72 Mon Sep 17 00:00:00 2001 From: Erik Ogenvik Date: Tue, 31 May 2022 21:33:48 +0200 Subject: [PATCH] Make it compile on machines with glibc 2.34+. See https://github.com/catchorg/Catch2/issues/2178 --- cmake/Modules/FindCatch.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Modules/FindCatch.cmake b/cmake/Modules/FindCatch.cmake index 4d227439..e64cb18b 100644 --- a/cmake/Modules/FindCatch.cmake +++ b/cmake/Modules/FindCatch.cmake @@ -28,7 +28,7 @@ include(Common/Core) if (Catch_FIND_VERSION) set(catch_version ${Catch_FIND_VERSION}) else() - set(catch_version 2.11.1) + set(catch_version 2.13.8) endif() set(catch_lib catch_lib_${catch_version})