mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
30 lines
904 B
CMake
30 lines
904 B
CMake
include (CheckCXXCompilerFlag)
|
|
include (CheckCCompilerFlag)
|
|
|
|
# Try to add -Wflag if compiler supports it
|
|
macro (add_warning flag)
|
|
string (REPLACE "-" "_" underscored_flag ${flag})
|
|
string (REPLACE "+" "x" underscored_flag ${underscored_flag})
|
|
|
|
check_cxx_compiler_flag("-W${flag}" SUPPORTS_CXXFLAG_${underscored_flag})
|
|
check_c_compiler_flag("-W${flag}" SUPPORTS_CFLAG_${underscored_flag})
|
|
|
|
if (SUPPORTS_CXXFLAG_${underscored_flag})
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W${flag}")
|
|
else ()
|
|
message (WARNING "Flag -W${flag} is unsupported")
|
|
endif ()
|
|
|
|
if (SUPPORTS_CFLAG_${underscored_flag})
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -W${flag}")
|
|
else ()
|
|
message (WARNING "Flag -W${flag} is unsupported")
|
|
endif ()
|
|
|
|
endmacro ()
|
|
|
|
# Try to add -Wno flag if compiler supports it
|
|
macro (no_warning flag)
|
|
add_warning(no-${flag})
|
|
endmacro ()
|