diff options
author | bibo38 <bibo38@users.noreply.github.com> | 2017-12-21 12:36:58 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-12-21 12:36:58 +0100 |
commit | 532731e6f4c0d843d355ff8f2d9f63e4e7854e6a (patch) | |
tree | 68c7c70e33fde99b21de53e1b3c7b86c6872c8b5 /src/Bindings/CMakeLists.txt | |
parent | Added Github-related rules to Contributing.md (#4076) (diff) | |
download | cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.gz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.bz2 cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.lz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.xz cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.tar.zst cuberite-532731e6f4c0d843d355ff8f2d9f63e4e7854e6a.zip |
Diffstat (limited to 'src/Bindings/CMakeLists.txt')
-rw-r--r-- | src/Bindings/CMakeLists.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Bindings/CMakeLists.txt b/src/Bindings/CMakeLists.txt index 0cfb7add9..45bd573d5 100644 --- a/src/Bindings/CMakeLists.txt +++ b/src/Bindings/CMakeLists.txt @@ -167,8 +167,11 @@ set_source_files_properties(${BINDING_OUTPUTS} PROPERTIES GENERATED TRUE) set_source_files_properties(${CMAKE_SOURCE_DIR}/src/Bindings/Bindings.cpp PROPERTIES COMPILE_FLAGS -Wno-error) -if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - set_source_files_properties(Bindings.cpp PROPERTIES COMPILE_FLAGS ${COMPILE_FLAGS} "-Wno-old-style-cast -Wno-missing-prototypes") +if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5) # Workaround for VERSION_GREATER_EQUAL, which is only supported on CMake 3.7+ + set(ADDITIONAL_FLAGS "-Wno-zero-as-null-pointer-constant") + endif() + set_source_files_properties(Bindings.cpp PROPERTIES COMPILE_FLAGS "-Wno-old-style-cast -Wno-missing-prototypes ${ADDITIONAL_FLAGS}") endif() if(NOT MSVC) |