Skip to content
Snippets Groups Projects
Verified Commit 6bf2996b authored by Lars Bilke's avatar Lars Bilke
Browse files

[CPM] Disable warnings.

parent 7d691da6
No related branches found
No related tags found
No related merge requests found
...@@ -66,6 +66,7 @@ CPMAddPackage( ...@@ -66,6 +66,7 @@ CPMAddPackage(
) )
if(tetgen_ADDED) if(tetgen_ADDED)
install(PROGRAMS $<TARGET_FILE:tetgen> DESTINATION bin) install(PROGRAMS $<TARGET_FILE:tetgen> DESTINATION bin)
list(APPEND DISABLE_WARNINGS_TARGETS tet tetgen)
endif() endif()
if(OGS_USE_PYTHON) if(OGS_USE_PYTHON)
...@@ -93,6 +94,7 @@ if (OGS_BUILD_PROCESS_ComponentTransport ...@@ -93,6 +94,7 @@ if (OGS_BUILD_PROCESS_ComponentTransport
) )
if(iphreeqc_ADDED) if(iphreeqc_ADDED)
include(scripts/cmake/iphreeqc.cmake) include(scripts/cmake/iphreeqc.cmake)
list(APPEND DISABLE_WARNINGS_TARGETS iphreeqc)
endif() endif()
endif() endif()
...@@ -106,3 +108,10 @@ if(Eigen3_ADDED) ...@@ -106,3 +108,10 @@ if(Eigen3_ADDED)
add_library(Eigen3::Eigen INTERFACE IMPORTED) add_library(Eigen3::Eigen INTERFACE IMPORTED)
target_include_directories(Eigen3::Eigen SYSTEM INTERFACE ${Eigen3_SOURCE_DIR}) target_include_directories(Eigen3::Eigen SYSTEM INTERFACE ${Eigen3_SOURCE_DIR})
endif() endif()
# Disable warnings
foreach(TARGET ${DISABLE_WARNINGS_TARGETS})
target_compile_options(${TARGET} PRIVATE
$<$<OR:$<CXX_COMPILER_ID:Clang>,$<CXX_COMPILER_ID:AppleClang>,$<CXX_COMPILER_ID:GNU>>:-w>
$<$<CXX_COMPILER_ID:MSVC>:/W0>)
endforeach()
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