From 2a4cbfff58ea7a8a8df3f4b147a511c1e6767dad Mon Sep 17 00:00:00 2001 From: Jonathan Allen Grant Date: Tue, 12 Sep 2023 07:16:06 -0700 Subject: [PATCH 1/2] Update meson.build to fix #2722 --- src/catch2/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/catch2/meson.build b/src/catch2/meson.build index f1c32219a9..0ab6b82145 100644 --- a/src/catch2/meson.build +++ b/src/catch2/meson.build @@ -157,6 +157,7 @@ internal_headers = [ 'matchers/catch_matchers_floating_point.hpp', 'matchers/catch_matchers_predicate.hpp', 'matchers/catch_matchers_quantifiers.hpp', + 'matchers/catch_matchers_range_equals.hpp', 'matchers/catch_matchers_string.hpp', 'matchers/catch_matchers_templated.hpp', 'matchers/catch_matchers_vector.hpp', @@ -251,6 +252,7 @@ internal_sources = files( 'matchers/catch_matchers_floating_point.cpp', 'matchers/catch_matchers_predicate.cpp', 'matchers/catch_matchers_quantifiers.cpp', + 'matchers/catch_matchers_range_equals.cpp', 'matchers/catch_matchers_string.cpp', 'matchers/catch_matchers_templated.cpp', 'matchers/internal/catch_matchers_impl.cpp', From 739fac0c4d4ec4d4e6c1229a24057862ecf628ea Mon Sep 17 00:00:00 2001 From: Jonathan Grant Date: Tue, 12 Sep 2023 10:19:31 -0400 Subject: [PATCH 2/2] No cpp file --- src/catch2/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/src/catch2/meson.build b/src/catch2/meson.build index 0ab6b82145..1f9bf45aea 100644 --- a/src/catch2/meson.build +++ b/src/catch2/meson.build @@ -252,7 +252,6 @@ internal_sources = files( 'matchers/catch_matchers_floating_point.cpp', 'matchers/catch_matchers_predicate.cpp', 'matchers/catch_matchers_quantifiers.cpp', - 'matchers/catch_matchers_range_equals.cpp', 'matchers/catch_matchers_string.cpp', 'matchers/catch_matchers_templated.cpp', 'matchers/internal/catch_matchers_impl.cpp',