From 4f9151d85b8e9d71a7c39df1fd797041e9d8a05a Mon Sep 17 00:00:00 2001 From: Martin Brodbeck Date: Sun, 6 Oct 2019 10:22:11 +0200 Subject: [PATCH] reduce compiler warnings --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4b748f..5aa0bb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) if(MSVC) add_compile_options(/W4 /WX) else() - add_compile_options(-Wall -Wextra -pedantic -Woverloaded-virtual -Wredundant-decls -Wshadow) + #add_compile_options(-Wall -Wextra -pedantic -Woverloaded-virtual -Wredundant-decls -Wshadow) + add_compile_options(-Wall -Wextra) endif() configure_file(config.h.in ${PROJECT_BINARY_DIR}/config.h)