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

[cmake] Build PhaseField on PETSC configs only.

All current PhaseField use cases need PETSc. Excluding it from serial
build will speed up CI a bit.
parent 8a0f3b66
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ set(_processes_list
LiquidFlow
LIE
ThermoRichardsMechanics
PhaseField
RichardsComponentTransport
RichardsFlow
RichardsMechanics
......@@ -27,6 +26,9 @@ set(_processes_list
TwoPhaseFlowWithPP
TwoPhaseFlowWithPrho
)
if(OGS_USE_PETSC)
set(_processes_list ${_processes_list} PhaseField)
endif()
foreach(process ${_processes_list})
option(OGS_BUILD_PROCESS_${process} "Build process ${process}" ON)
......
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