Merge pull request #2418
50431112
cmake: make warning about headers not fatal (redfish)0a70ba2c
cmake: fix setting of -Werror (redfish)
This commit is contained in:
commit
c339d06a5b
|
@ -407,7 +407,7 @@ else()
|
||||||
set(WARNINGS "${WARNINGS} -Wno-error=inline-asm")
|
set(WARNINGS "${WARNINGS} -Wno-error=inline-asm")
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
set(WARNINGS "${WARNINGS} -Wlogical-op -Wno-error=maybe-uninitialized")
|
set(WARNINGS "${WARNINGS} -Wlogical-op -Wno-error=maybe-uninitialized -Wno-error=cpp")
|
||||||
endif()
|
endif()
|
||||||
if(MINGW)
|
if(MINGW)
|
||||||
set(WARNINGS "${WARNINGS} -Wno-error=unused-value -Wno-error=unused-but-set-variable")
|
set(WARNINGS "${WARNINGS} -Wno-error=unused-value -Wno-error=unused-but-set-variable")
|
||||||
|
@ -699,25 +699,19 @@ if(NOT ZMQ_LIB)
|
||||||
message(FATAL_ERROR "Could not find require libzmq")
|
message(FATAL_ERROR "Could not find require libzmq")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
function (treat_warnings_as_errors dirs)
|
|
||||||
foreach(dir ${ARGV})
|
|
||||||
set_property(DIRECTORY ${dir}
|
|
||||||
APPEND PROPERTY COMPILE_FLAGS "-Werror")
|
|
||||||
endforeach()
|
|
||||||
endfunction()
|
|
||||||
|
|
||||||
add_subdirectory(contrib)
|
|
||||||
add_subdirectory(src)
|
|
||||||
|
|
||||||
treat_warnings_as_errors(contrib src)
|
|
||||||
|
|
||||||
option(BUILD_TESTS "Build tests." OFF)
|
option(BUILD_TESTS "Build tests." OFF)
|
||||||
|
|
||||||
if(BUILD_TESTS)
|
if(BUILD_TESTS)
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# warnings are cleared only for GCC on Linux
|
||||||
|
if (NOT (MINGW OR APPLE OR FREEBSD OR OPENBSD OR DRAGONFLY))
|
||||||
|
add_compile_options("${WARNINGS_AS_ERRORS_FLAG}") # applies only to targets that follow
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_subdirectory(contrib)
|
||||||
|
add_subdirectory(src)
|
||||||
|
|
||||||
if(BUILD_DOCUMENTATION)
|
if(BUILD_DOCUMENTATION)
|
||||||
set(DOC_GRAPHS "YES" CACHE STRING "Create dependency graphs (needs graphviz)")
|
set(DOC_GRAPHS "YES" CACHE STRING "Create dependency graphs (needs graphviz)")
|
||||||
|
|
Loading…
Reference in New Issue