From 4276c79d282ffa0a9f6078d950f1cea11e4d868f Mon Sep 17 00:00:00 2001 From: Lars Melchior Date: Mon, 6 Nov 2023 18:04:37 +0100 Subject: [PATCH] update catch2 to 3.4.0 (#517) --- README.md | 2 +- examples/catch2/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc2d7b80..12cf2b12 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ include(cmake/CPM.cmake) CPMAddPackage("gh:fmtlib/fmt#7.1.3") CPMAddPackage("gh:nlohmann/json@3.10.5") -CPMAddPackage("gh:catchorg/Catch2@3.2.1") +CPMAddPackage("gh:catchorg/Catch2@3.4.0") # link dependencies target_link_libraries(main fmt::fmt nlohmann_json::nlohmann_json Catch2::Catch2WithMain) diff --git a/examples/catch2/CMakeLists.txt b/examples/catch2/CMakeLists.txt index 2a35349d..f4d3e226 100644 --- a/examples/catch2/CMakeLists.txt +++ b/examples/catch2/CMakeLists.txt @@ -7,7 +7,7 @@ project(CPMExampleCatch2) include(../../cmake/CPM.cmake) CPMAddPackage("gh:cpm-cmake/testpack-fibonacci@2.0") -CPMAddPackage("gh:catchorg/Catch2@3.2.1") +CPMAddPackage("gh:catchorg/Catch2@3.4.0") # ---- Create binary ----