From: Timo Heister Date: Sun, 11 Aug 2024 17:31:09 +0000 (-0400) Subject: step-81: do not require WITH_COMPLEX_VALUES X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c77b8bfbc7ac1ba07241c707cf3d22ae456b14c;p=dealii.git step-81: do not require WITH_COMPLEX_VALUES We are not using any of the SP/Matrices with complex --- diff --git a/examples/step-81/CMakeLists.txt b/examples/step-81/CMakeLists.txt index 0184be5855..437cd2974b 100644 --- a/examples/step-81/CMakeLists.txt +++ b/examples/step-81/CMakeLists.txt @@ -37,14 +37,12 @@ endif() # # Are all dependencies fulfilled? # -if(NOT (DEAL_II_WITH_UMFPACK AND DEAL_II_WITH_COMPLEX_VALUES)) # keep in one line +if(NOT DEAL_II_WITH_UMFPACK) # keep in one line message(FATAL_ERROR " Error! This tutorial requires a deal.II library that was configured with the following options: DEAL_II_WITH_UMFPACK = ON - DEAL_II_WITH_COMPLEX_VALUES = ON However, the deal.II library found at ${DEAL_II_PATH} was configured with these options: DEAL_II_WITH_UMFPACK = ${DEAL_II_WITH_UMFPACK} - DEAL_II_WITH_COMPLEX_VALUES = ${DEAL_II_WITH_COMPLEX_VALUES} This conflicts with the requirements." ) endif()