diff --git a/conanfile.txt b/conanfile.txt index 08f4398..5b8cad3 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -1,7 +1,7 @@ [requires] yaml-cpp/0.9.0 argparse/3.2 -catch2/3.13.0 +catch2/3.14.0 trompeloeil/49 [generators] diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index adfec90..b781bf9 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -7,11 +7,6 @@ function(add_test_suite name) add_executable(${name} ${ARGN}) target_link_libraries(${name} PRIVATE Catch2::Catch2WithMain trompeloeil::trompeloeil) add_test(${name} ${name}) - - # Workaround for catch2 #3076 - if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "22") - target_compile_options(${name} PRIVATE -Wno-c2y-extensions) - endif() endfunction() add_test_suite(ConfigTest ConfigTest.cpp)