From 226aafc188464830a7bf45f703b0eeba8645746e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=C5=9Alusarczyk?= Date: Thu, 3 Apr 2025 14:05:29 +0200 Subject: [PATCH] treating warnings as errors no more --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 931d00f7bd..aa5af5d516 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -394,7 +394,8 @@ if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) include(GoogleTest) add_compile_options($<$:-Wall>) - add_compile_options($<$:-Werror>) + # DR stopped to compile without warnings :( + # add_compile_options($<$:-Werror>) if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") add_compile_options(-Wno-error=stringop-overflow=)