diff options
author | Hummer12007 <hilobakho@gmail.com> | 2017-07-03 23:30:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-03 23:30:39 +0300 |
commit | c8370c96991cb8af647e46e5067b6c6641eacec4 (patch) | |
tree | 9e3f94462da0dd840cf50c7a724145e6d5b5473c | |
parent | ba78ea3e5fcb0813a779f26269c34aba9b341c16 (diff) | |
download | sway-c8370c96991cb8af647e46e5067b6c6641eacec4.tar.xz |
Disable -Wunused-result diagnostic
It caused unpredictable build failures with different build environments
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0257a99f..a4bf351b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin) 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} -Wno-unused-result") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") if (CMAKE_COMPILER_IS_GNUCC) if(NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 7.0) |