From 16870abed7a13ae92a246f9ea85f3b58b08f0ede Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 1 Sep 2009 11:03:48 +0200 Subject: Add more warnings to gcc. --- cmake/Modules/DefineCompilerFlags.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmake/Modules') diff --git a/cmake/Modules/DefineCompilerFlags.cmake b/cmake/Modules/DefineCompilerFlags.cmake index 8ef642e..dafc799 100644 --- a/cmake/Modules/DefineCompilerFlags.cmake +++ b/cmake/Modules/DefineCompilerFlags.cmake @@ -4,7 +4,8 @@ include(CheckCCompilerFlag) if (UNIX AND NOT WIN32) if (CMAKE_COMPILER_IS_GNUCC) - add_definitions(-std=gnu99 -pedantic -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement -Wunused) + # add -Wconversion ? + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -pedantic -Wall -Wextra -Wshadow -Wmissing-prototypes -Wdeclaration-after-statement -Wunused -Wfloat-equal -Wpointer-arith -Wwrite-strings -Wformat-security -Wmissing-format-attribute") # with -fPIC check_c_compiler_flag("-fPIC" WITH_FPIC) -- cgit v1.2.3