From 21d7fc58b664a08e1f7856fc9dc8a2a0076d83bf Mon Sep 17 00:00:00 2001 From: Marius Greuel Date: Fri, 7 Jan 2022 23:56:58 +0100 Subject: [PATCH] Add -Wall to CMake compiler options --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0048bf7c..8fbb21d7 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -299,7 +299,7 @@ endif() if(NOT WIN32) set(LIB_MATH m) - #add_compile_options(-Wall -Wextra -pedantic) + add_compile_options(-Wall) # -Wextra endif() if(MSVC)