Commit 2857b55a authored by Tor Didriksen's avatar Tor Didriksen

Bug #53445 Build with -Wall and fix warnings that it generates

Post-push fix: -Wall implies -Wunused on some platforms,
which will generate thousands of warnings about unused parameters.
parent d8536dfb
......@@ -56,7 +56,7 @@ ENDIF()
# Always enable -Wall for gnu C/C++
IF(CMAKE_COMPILER_IS_GNUCXX)
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wno-unused-parameter")
ENDIF()
IF(CMAKE_COMPILER_IS_GNUCC)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment