Revert "Optional warnings added. These are only used if supported by the"
This reverts commit 9ec6531861
.
main
@@ -15,7 +15,6 @@ else() | |||
message(STATUS "Build Type : None") | |||
endif() | |||
include(Compiler) | |||
if( COVERAGE ) | |||
include(Coverage) | |||
@@ -29,12 +28,6 @@ add_compile_options(-Wall | |||
-Wshadow | |||
-Wold-style-cast | |||
) | |||
add_compile_options_if_supported(-Wduplicated-cond | |||
-Wduplicated-branches | |||
-Wlogical-op | |||
-Wnull-dereference | |||
-Wuseless-cast | |||
) | |||
set(CMAKE_CXX_STANDARD 14) |
@@ -1,13 +0,0 @@ | |||
include(CheckCXXCompilerFlag) | |||
function(add_compile_options_if_supported) | |||
foreach(flag ${ARGN}) | |||
set(option_var option_supported_${flag}) | |||
CHECK_CXX_COMPILER_FLAG(${flag} ${option_var}) | |||
if( ${option_var} ) | |||
add_compile_options(${flag}) | |||
endif() | |||
endforeach() | |||
endfunction() | |||