Skip to content
Snippets Groups Projects
Commit bcb40f76 authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

Merge branch 'issue/eigen-metis' into 'master'

Do not activate all packages by default in the Eigen backend

See merge request amdis/amdis!187
parents d0a5e532 7b01bd69
Branches
Tags
No related merge requests found
......@@ -23,7 +23,6 @@ add_subdirectory("libs")
dune_add_library(amdis
LINK_LIBRARIES ${DUNE_LIBS} fmt::fmt
EXPORT_NAME AMDiS NAMESPACE AMDiS::)
add_dune_all_flags(amdis)
add_subdirectory("amdis")
add_subdirectory("bin")
......@@ -48,6 +47,11 @@ if (PETSc_FOUND)
target_link_libraries(amdis PUBLIC PETSc::PETSc)
endif (PETSc_FOUND)
if (NOT EIGEN3_FOUND)
# do not activate all packages by default in the Eigen backend
add_dune_all_flags(amdis)
endif()
if (ENABLE_ALL_WARNINGS)
target_compile_options(amdis PUBLIC "-Wall" "-Wpedantic"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment