From ef56370af35d695cbf5dc5002d2a55eb92aebab1 Mon Sep 17 00:00:00 2001 From: Egil Rasmussen Date: Thu, 19 Dec 2024 14:08:15 -0800 Subject: [PATCH] [Ticket #322] Resolve compile issue of the tests MINSIGSTKSZ was remove in one of the system lib causing compile error of the tests. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index d55fdc51..42844546 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,6 +110,9 @@ add_subdirectory(ext) if(RC_ENABLE_TESTS) enable_testing() + + add_compile_definitions(-DCATCH_CONFIG_NO_POSIX_SIGNALS) + add_subdirectory(test) endif()