From c1569a3d293a6b511ecb9c18b2298826c9578d9f Mon Sep 17 00:00:00 2001 From: gabime Date: Fri, 22 Dec 2023 18:15:50 +0200 Subject: [PATCH] Bump to catch2 v3.5.0 --- tests/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 63cced49..8300887a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -19,7 +19,10 @@ if(Catch2_FOUND) else() message(STATUS "Bundled version of Catch will be downloaded and used.") include(FetchContent) - FetchContent_Declare(Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git GIT_TAG v3.3.2) + FetchContent_Declare(Catch2 + GIT_REPOSITORY https://github.com/catchorg/Catch2.git + GIT_TAG 53d0d913a422d356b23dd927547febdf69ee9081 # v3.5.0 + ) FetchContent_MakeAvailable(Catch2) endif()