diff options
author | Mattes D <github@xoft.cz> | 2014-01-02 18:21:11 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-01-02 18:21:11 +0100 |
commit | 968274051969f1628bd9cb79d3e3210fbe3037ed (patch) | |
tree | 8cb6a940396ef5ed58e5aac4b5819843b1c1b500 /CMakeLists.txt | |
parent | Merge pull request #479 from mc-server/cmake-win (diff) | |
parent | fixed compiler warnings not being enabled in clang (diff) | |
download | cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar.gz cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar.bz2 cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar.lz cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar.xz cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.tar.zst cuberite-968274051969f1628bd9cb79d3e3210fbe3037ed.zip |
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 67f70142b..451854074 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -112,11 +112,15 @@ add_subdirectory(lib/expat/) add_subdirectory(lib/luaexpat/) add_subdirectory(lib/md5/) -# Re-add the maximum warning level: +# Remove disabling the maximum warning level: +# clang does not like a command line that reads -Wall -Wextra -w -Wall -Wextra and does not output any warnings # We do not do that for MSVC since MSVC produces an awful lot of warnings for its own STL headers; # the important warnings will be turned on using #pragma in Globals.h if (NOT MSVC) - add_flags("-Wall -Wextra") + string(REPLACE "-w" "" CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}") + string(REPLACE "-w" "" CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}") + string(REPLACE "-w" "" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") + string(REPLACE "-w" "" CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}") endif() add_subdirectory (src) |