From 60aa6ad5150ba14aac7a23156dee637d88247f41 Mon Sep 17 00:00:00 2001 From: nandanv Date: Wed, 15 Jun 2022 20:43:02 +0530 Subject: [PATCH] Updating Catch2 v2 to v2.13.9 Fixes issue with MINSIGSTKSZ which is no longer a constant -> https://github.com/JuliaLang/julia/issues/39822 Issue was fixed in https://github.com/catchorg/Catch2/releases/tag/v2.13.5 --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d0236b7..6075df8 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -8,7 +8,7 @@ if (NOT Catch2_FOUND) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v2.13.4) + GIT_TAG v2.13.9) FetchContent_MakeAvailable(Catch2)