Skip to content
Snippets Groups Projects
Commit ccbf65e5 authored by Tobias Leibner's avatar Tobias Leibner
Browse files

[CMakeLists] disable warning from dependent modules

(copied from dune-xt-common)
parent 52d850be
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,16 @@ list(APPEND COMMON_HEADER ${HEADER_LIST})
endforeach(_mod DEPENDENCIES)
set_source_files_properties(${COMMON_HEADER} PROPERTIES HEADER_FILE_ONLY 1)
#disable most warnings from dependent modules
foreach(_mod ${ALL_DEPENDENCIES})
dune_module_to_uppercase(_upper_case "${_mod}")
if(${_mod}_INCLUDE_DIRS)
foreach( _idir ${${_mod}_INCLUDE_DIRS} )
add_definitions("-isystem ${_idir}")
endforeach( _idir )
endif(${_mod}_INCLUDE_DIRS)
endforeach(_mod DEPENDENCIES)
add_subdirectory(dune)
add_subdirectory(doc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment