From 8586d0f264d08bf16bb9093e59a8a0c3bab0adb4 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 e8997079..c59adb8a 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)