From edc19bec79a72693d60439d8a4dff15011949a1a Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Wed, 2 Apr 2025 15:24:59 +0200 Subject: [PATCH] Unify version numbers for cmake and deal.II. --- CeresFE/CMakeLists.txt | 4 ++-- Crystal_Growth_Phase_Field_Model/CMakeLists.txt | 2 +- Distributed_LDG_Method/CMakeLists.txt | 4 ++-- Distributed_Moving_Laser_Heating/CMakeLists.txt | 2 +- ElastoplasticTorsion/CMakeLists.txt | 4 ++-- Linear_Elastic_Active_Skeletal_Muscle_Model/CMakeLists.txt | 4 ++-- MCMC-Laplace/CMakeLists.txt | 4 ++-- Maxwell-Eigenvalue-hp-Refinement/CMakeLists.txt | 4 ++-- MultipointFluxMixedFiniteElementMethods/CMakeLists.txt | 4 ++-- NavierStokes_TRBDF2_DG/CMakeLists.txt | 2 +- Nonlinear_PoroViscoelasticity/CMakeLists.txt | 4 ++-- Phase_field_fracture_model_in_3D/CMakeLists.txt | 2 +- .../CMakeLists.txt | 4 ++-- .../CMakeLists.txt | 4 ++-- Swift-Hohenberg-Solver/CMakeLists.txt | 2 +- advection_reaction_estimator/CMakeLists.txt | 2 +- cdr/CMakeLists.txt | 4 ++-- coupled_laplace_problem/CMakeLists.txt | 2 +- goal_oriented_elastoplasticity/CMakeLists.txt | 4 ++-- information_based_mesh_refinement/CMakeLists.txt | 2 +- nonlinear-heat_transfer_with_AD_NOX/CMakeLists.txt | 2 +- parallel_in_time/CMakeLists.txt | 2 +- time_dependent_navier_stokes/CMakeLists.txt | 4 ++-- two_phase_flow/CMakeLists.txt | 4 ++-- 24 files changed, 38 insertions(+), 38 deletions(-) diff --git a/CeresFE/CMakeLists.txt b/CeresFE/CMakeLists.txt index e358977..56d803d 100644 --- a/CeresFE/CMakeLists.txt +++ b/CeresFE/CMakeLists.txt @@ -2,9 +2,9 @@ # CMake script for the CeresFE program: ## -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) diff --git a/Crystal_Growth_Phase_Field_Model/CMakeLists.txt b/Crystal_Growth_Phase_Field_Model/CMakeLists.txt index f54ca87..0491fd0 100644 --- a/Crystal_Growth_Phase_Field_Model/CMakeLists.txt +++ b/Crystal_Growth_Phase_Field_Model/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.16) +cmake_minimum_required(VERSION 3.13.4) # Set the name of the project and target: SET(TARGET "Kobayashi_Parallel") diff --git a/Distributed_LDG_Method/CMakeLists.txt b/Distributed_LDG_Method/CMakeLists.txt index 4fe7c2c..e630fd0 100644 --- a/Distributed_LDG_Method/CMakeLists.txt +++ b/Distributed_LDG_Method/CMakeLists.txt @@ -16,9 +16,9 @@ SET(CLEAN_UP_FILES *.vtu *.pvtu *.visit) # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/Distributed_Moving_Laser_Heating/CMakeLists.txt b/Distributed_Moving_Laser_Heating/CMakeLists.txt index 41032b3..100396f 100644 --- a/Distributed_Moving_Laser_Heating/CMakeLists.txt +++ b/Distributed_Moving_Laser_Heating/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 QUIET HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/ElastoplasticTorsion/CMakeLists.txt b/ElastoplasticTorsion/CMakeLists.txt index ae7a996..0622d5d 100644 --- a/ElastoplasticTorsion/CMakeLists.txt +++ b/ElastoplasticTorsion/CMakeLists.txt @@ -22,9 +22,9 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/Linear_Elastic_Active_Skeletal_Muscle_Model/CMakeLists.txt b/Linear_Elastic_Active_Skeletal_Muscle_Model/CMakeLists.txt index 90958bb..b0b832b 100644 --- a/Linear_Elastic_Active_Skeletal_Muscle_Model/CMakeLists.txt +++ b/Linear_Elastic_Active_Skeletal_Muscle_Model/CMakeLists.txt @@ -21,9 +21,9 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/MCMC-Laplace/CMakeLists.txt b/MCMC-Laplace/CMakeLists.txt index ae2f9d2..f8bf8fd 100644 --- a/MCMC-Laplace/CMakeLists.txt +++ b/MCMC-Laplace/CMakeLists.txt @@ -2,9 +2,9 @@ # CMake script for the MCMC-laplace program: ## -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) diff --git a/Maxwell-Eigenvalue-hp-Refinement/CMakeLists.txt b/Maxwell-Eigenvalue-hp-Refinement/CMakeLists.txt index 43b8207..e53edea 100644 --- a/Maxwell-Eigenvalue-hp-Refinement/CMakeLists.txt +++ b/Maxwell-Eigenvalue-hp-Refinement/CMakeLists.txt @@ -8,9 +8,9 @@ SET(TARGET_SRC ${TARGET}.cc ) -CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/MultipointFluxMixedFiniteElementMethods/CMakeLists.txt b/MultipointFluxMixedFiniteElementMethods/CMakeLists.txt index 0f0c470..2371e7f 100644 --- a/MultipointFluxMixedFiniteElementMethods/CMakeLists.txt +++ b/MultipointFluxMixedFiniteElementMethods/CMakeLists.txt @@ -22,9 +22,9 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/NavierStokes_TRBDF2_DG/CMakeLists.txt b/NavierStokes_TRBDF2_DG/CMakeLists.txt index 94c0053..50f256d 100644 --- a/NavierStokes_TRBDF2_DG/CMakeLists.txt +++ b/NavierStokes_TRBDF2_DG/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/Nonlinear_PoroViscoelasticity/CMakeLists.txt b/Nonlinear_PoroViscoelasticity/CMakeLists.txt index 55ef057..84db581 100644 --- a/Nonlinear_PoroViscoelasticity/CMakeLists.txt +++ b/Nonlinear_PoroViscoelasticity/CMakeLists.txt @@ -11,9 +11,9 @@ SET(TARGET_SRC ) #Search for required deal.II version -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/Phase_field_fracture_model_in_3D/CMakeLists.txt b/Phase_field_fracture_model_in_3D/CMakeLists.txt index e442456..c827be0 100644 --- a/Phase_field_fracture_model_in_3D/CMakeLists.txt +++ b/Phase_field_fracture_model_in_3D/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/Quasi_static_Finite_strain_Compressible_Elasticity/CMakeLists.txt b/Quasi_static_Finite_strain_Compressible_Elasticity/CMakeLists.txt index fc470b0..c71c2a9 100644 --- a/Quasi_static_Finite_strain_Compressible_Elasticity/CMakeLists.txt +++ b/Quasi_static_Finite_strain_Compressible_Elasticity/CMakeLists.txt @@ -18,9 +18,9 @@ SET(CLEAN_UP_FILES # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/Quasi_static_Finite_strain_Quasi_incompressible_ViscoElasticity/CMakeLists.txt b/Quasi_static_Finite_strain_Quasi_incompressible_ViscoElasticity/CMakeLists.txt index 3217d8f..99c5257 100644 --- a/Quasi_static_Finite_strain_Quasi_incompressible_ViscoElasticity/CMakeLists.txt +++ b/Quasi_static_Finite_strain_Quasi_incompressible_ViscoElasticity/CMakeLists.txt @@ -17,9 +17,9 @@ SET(CLEAN_UP_FILES # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/Swift-Hohenberg-Solver/CMakeLists.txt b/Swift-Hohenberg-Solver/CMakeLists.txt index 8c3da80..422ab2b 100644 --- a/Swift-Hohenberg-Solver/CMakeLists.txt +++ b/Swift-Hohenberg-Solver/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/advection_reaction_estimator/CMakeLists.txt b/advection_reaction_estimator/CMakeLists.txt index a0598c1..87b0180 100644 --- a/advection_reaction_estimator/CMakeLists.txt +++ b/advection_reaction_estimator/CMakeLists.txt @@ -10,7 +10,7 @@ SET(TARGET_SRC PROJECT(${TARGET} CXX) -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/cdr/CMakeLists.txt b/cdr/CMakeLists.txt index 597a013..843b4cc 100644 --- a/cdr/CMakeLists.txt +++ b/cdr/CMakeLists.txt @@ -1,6 +1,6 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}) IF(NOT ${deal.II_FOUND}) diff --git a/coupled_laplace_problem/CMakeLists.txt b/coupled_laplace_problem/CMakeLists.txt index 7995817..99883fa 100644 --- a/coupled_laplace_problem/CMakeLists.txt +++ b/coupled_laplace_problem/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/goal_oriented_elastoplasticity/CMakeLists.txt b/goal_oriented_elastoplasticity/CMakeLists.txt index af4e5c1..aead454 100644 --- a/goal_oriented_elastoplasticity/CMakeLists.txt +++ b/goal_oriented_elastoplasticity/CMakeLists.txt @@ -16,9 +16,9 @@ SET(CLEAN_UP_FILES *.vtu *.pvtu *.visit) # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/information_based_mesh_refinement/CMakeLists.txt b/information_based_mesh_refinement/CMakeLists.txt index a671884..951014e 100644 --- a/information_based_mesh_refinement/CMakeLists.txt +++ b/information_based_mesh_refinement/CMakeLists.txt @@ -21,7 +21,7 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/nonlinear-heat_transfer_with_AD_NOX/CMakeLists.txt b/nonlinear-heat_transfer_with_AD_NOX/CMakeLists.txt index 2a3a1f2..dc5825d 100755 --- a/nonlinear-heat_transfer_with_AD_NOX/CMakeLists.txt +++ b/nonlinear-heat_transfer_with_AD_NOX/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.5) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) set(CMAKE_CXX_STANDARD_REQUIRED True) FIND_PACKAGE(deal.II 9.5.0 QUIET HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} diff --git a/parallel_in_time/CMakeLists.txt b/parallel_in_time/CMakeLists.txt index c469227..adb3396 100644 --- a/parallel_in_time/CMakeLists.txt +++ b/parallel_in_time/CMakeLists.txt @@ -1,4 +1,4 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) PROJECT("parallel_in_time") diff --git a/time_dependent_navier_stokes/CMakeLists.txt b/time_dependent_navier_stokes/CMakeLists.txt index a046908..820a1cb 100644 --- a/time_dependent_navier_stokes/CMakeLists.txt +++ b/time_dependent_navier_stokes/CMakeLists.txt @@ -21,9 +21,9 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) diff --git a/two_phase_flow/CMakeLists.txt b/two_phase_flow/CMakeLists.txt index 17d6477..315bae5 100644 --- a/two_phase_flow/CMakeLists.txt +++ b/two_phase_flow/CMakeLists.txt @@ -26,9 +26,9 @@ SET(TARGET_SRC # Usually, you will not need to modify anything beyond this point... -CMAKE_MINIMUM_REQUIRED(VERSION 3.3.0) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13.4) -FIND_PACKAGE(deal.II 9.5 +FIND_PACKAGE(deal.II 9.5.0 HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) IF(NOT ${deal.II_FOUND}) -- 2.39.5