bumped cmake version min and fixed clang support
This commit is contained in:
@@ -236,12 +236,12 @@ macro(set_exe_flags)
|
||||
add_flags_cxx("-Wno-error=shadow -Wno-error=old-style-cast -Wno-error=global-constructors")
|
||||
add_flags_cxx("-Wno-error=exit-time-destructors")
|
||||
add_flags_cxx("-Wno-weak-vtables -Wno-switch-enum")
|
||||
if (CLANG_VERSION_STRING VERSION_MORE 3.0)
|
||||
if ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_GREATER 3.0)
|
||||
# flags that are not present in 3.0
|
||||
add_flags_cxx("-Wno-error=covered-switch-default -Wno-error=missing-variable-declarations")
|
||||
add_flags_cxx("-Wno-implicit-fallthrough -Wno-error=extra-semi")
|
||||
endif()
|
||||
if (CLANG_VERSION_STRING VERSION_MORE 3.1)
|
||||
if ("${CMAKE_CXX_COMPILER_VERSION}" VERSION_GREATER 3.1)
|
||||
# flags introduced in 3.2
|
||||
add_flags_cxx("-Wno-documentation")
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user