From: Timo Heister Date: Thu, 20 Mar 2025 19:54:29 +0000 (-0400) Subject: step-64: require LAPACK X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=732ff229d7fbceea96434af4d65c5d68bc10c7c8;p=dealii.git step-64: require LAPACK --- diff --git a/examples/step-64/CMakeLists.txt b/examples/step-64/CMakeLists.txt index 8feccbf9a1..4bac3437c0 100644 --- a/examples/step-64/CMakeLists.txt +++ b/examples/step-64/CMakeLists.txt @@ -37,12 +37,14 @@ endif() # # Are all dependencies fulfilled? # -if(NOT DEAL_II_WITH_MPI OR NOT DEAL_II_WITH_P4EST) +if(NOT DEAL_II_WITH_MPI OR NOT DEAL_II_WITH_P4EST OR NOT DEAL_II_WITH_LAPACK) message(FATAL_ERROR " Error! This tutorial requires a deal.II library that was configured with the following options: + DEAL_II_WITH_LAPACK = ON DEAL_II_WITH_MPI = ON DEAL_II_WITH_P4EST = ON However, the deal.II library found at ${DEAL_II_PATH} was configured with these options: + DEAL_II_WITH_LAPACK = ${DEAL_II_WITH_LAPACK} DEAL_II_WITH_MPI = ${DEAL_II_WITH_MPI} DEAL_II_WITH_P4EST = ${DEAL_II_WITH_P4EST} This conflicts with the requirements."