From eeded572c5a5dfd97417b78e7743146706fe7e95 Mon Sep 17 00:00:00 2001
From: Jerome Hue <jerome.hue@cea.fr>
Date: Mon, 17 Mar 2025 16:38:14 +0100
Subject: [PATCH] Add _USE_MATH_DEFINES to unit tests

---
 unit_tests/CMakeLists.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/unit_tests/CMakeLists.txt b/unit_tests/CMakeLists.txt
index e1f261d0..571c96b9 100644
--- a/unit_tests/CMakeLists.txt
+++ b/unit_tests/CMakeLists.txt
@@ -21,6 +21,8 @@ file(GLOB_RECURSE src_files "*.cpp")
 
 add_executable(tests${module_name} ${src_files})
 
+target_compile_definitions(tests${module_name} PRIVATE _USE_MATH_DEFINES)
+
 target_link_libraries(tests${module_name} PRIVATE ${module_name})
 
 target_link_libraries(tests${module_name} PRIVATE Catch2::Catch2WithMain)
-- 
GitLab