diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-02-26 03:53:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-26 03:53:31 -0500 |
commit | 893c049aa3a76c1ece5ffe388d18a47b6ef456ff (patch) | |
tree | 5f14e5b231f35c9d6d381c2eb3fe48fa7ce3a19f | |
parent | e1ff88a8d262876e9bc4659fd0a71e88f316047c (diff) | |
parent | c51e83f83411379e3fd47e70af3de4b25999ee6d (diff) |
Merge pull request #1086 from Fale/ignore-Wimplicit-fallthrough
Ignore Wimplicit-fallthrough
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 74c79075..685e8fc7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,6 +14,11 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wextra") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-parameter") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") +if (CMAKE_COMPILER_IS_GNUCC) + if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 7.0) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wimplicit-fallthrough=0") + endif() +endif() list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_CURRENT_SOURCE_DIR}/CMake |