Skip to content
Snippets Groups Projects

Fix petsc configuration when pugs is built without mpi support

Merged Stéphane Del Pino requested to merge issue/petsc-witout-mpi into develop
1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
+ 8
2
@@ -156,8 +156,14 @@ set(PUGS_ENABLE_PETSC AUTO CACHE STRING
"Choose one of: AUTO ON OFF")
if (PUGS_ENABLE_PETSC MATCHES "^(AUTO|ON)$")
pkg_check_modules(PETSC PETSc)
if (MPI_FOUND)
# PETSc support is deactivated if MPI is not found
pkg_check_modules(PETSC PETSc)
else()
message(STATUS "PETSc support is deactivated since pugs will not be build with MPI support")
set(PETSC_FOUND FALSE)
unset(PUGS_HAS_PETSC)
endif()
set(PUGS_HAS_PETSC ${PETSC_FOUND})
else()
unset(PUGS_HAS_PETSC)
Loading