From ba4116577c5a445305a7c11b0ded6feeaa3ece94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Hejl?= Date: Thu, 13 Feb 2025 14:11:45 +0100 Subject: [PATCH] Fix building of tests in RelWithDebInfo mode on Windows. --- tests/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c4d3f16c2f..142b58490d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -2,6 +2,8 @@ # add_subirectory() find_package(Catch2 3.8 REQUIRED) +slic3r_remap_configs(Catch2::Catch2 RelWithDebInfo Release) +slic3r_remap_configs(Catch2::Catch2WithMain RelWithDebInfo Release) include(Catch)