1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: Chow Loong Jin <hyperair@debian.org>
Date: Mon, 10 Mar 2025 23:22:53 +0800
Subject: Downgrade catch2 dependency to 3.7
---
tests/CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index e821ad0..7e28f26 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,4 +1,4 @@
-find_package(Catch2 3.8 REQUIRED)
+find_package(Catch2 3.7 REQUIRED)
include(Catch)
@@ -30,4 +30,4 @@ endif()
if (${PROJECT_NAME}_BUILD_COMPONENT_Convert)
add_subdirectory(convert)
-endif ()
\ No newline at end of file
+endif ()
|