From 25782e9689a53b8924ab20e9bf850605463bb277 Mon Sep 17 00:00:00 2001 From: Griger5 Date: Tue, 13 Jan 2026 15:44:32 +0100 Subject: [PATCH] reenable Werror and other flags --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 50fd4c7b..3bac7bfd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -578,8 +578,7 @@ endif() foreach(target _PyPartMC) target_compile_options(${target} PRIVATE $<$:/W4 /WX> - # $<$>:-Wall -Wextra -Wpedantic -Werror> - $<$>:-Wno-unused-parameter> + $<$>:-Wall -Wextra -Wpedantic -Werror -Wno-unused-parameter> ) endforeach() target_compile_definitions(_PyPartMC PRIVATE PMC_USE_SUNDIALS="1")