From d5baacaa3e8ce6937dfeaa31e179af25e4744884 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Sat, 22 May 2021 10:06:33 -0500 Subject: [PATCH] update version requirement in documentation --- doc/users/CMakeLists.txt.sample | 2 +- doc/users/CMakeLists.txt.sample2 | 2 +- doc/users/CMakeLists.txt.sample3 | 2 +- doc/users/cmake_user.html | 8 ++++---- doc/users/testsuite.html | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/doc/users/CMakeLists.txt.sample b/doc/users/CMakeLists.txt.sample index debd7ba45a..6dc4a1cf27 100644 --- a/doc/users/CMakeLists.txt.sample +++ b/doc/users/CMakeLists.txt.sample @@ -1,6 +1,6 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0) -FIND_PACKAGE(deal.II 9.3.0 REQUIRED +FIND_PACKAGE(deal.II 10.0.0 REQUIRED HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) DEAL_II_INITIALIZE_CACHED_VARIABLES() diff --git a/doc/users/CMakeLists.txt.sample2 b/doc/users/CMakeLists.txt.sample2 index 400c91de74..8bb978b164 100644 --- a/doc/users/CMakeLists.txt.sample2 +++ b/doc/users/CMakeLists.txt.sample2 @@ -1,4 +1,4 @@ -FIND_PACKAGE(deal.II 9.3.0 REQUIRED +FIND_PACKAGE(deal.II 10.0.0 REQUIRED HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} # You can specify additional hints for search paths here, e.g. diff --git a/doc/users/CMakeLists.txt.sample3 b/doc/users/CMakeLists.txt.sample3 index de3a08ebce..b06d0ce4d0 100644 --- a/doc/users/CMakeLists.txt.sample3 +++ b/doc/users/CMakeLists.txt.sample3 @@ -1,4 +1,4 @@ -FIND_PACKAGE(deal.II 9.3.0 REQUIRED +FIND_PACKAGE(deal.II 10.0.0 REQUIRED HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} # You can specify additional hints for search paths here, e.g. diff --git a/doc/users/cmake_user.html b/doc/users/cmake_user.html index 62064e6cd5..1e74836fa7 100644 --- a/doc/users/cmake_user.html +++ b/doc/users/cmake_user.html @@ -65,7 +65,7 @@
 CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0)
 
-FIND_PACKAGE(deal.II 9.3.0 REQUIRED
+FIND_PACKAGE(deal.II 10.0.0 REQUIRED
   HINTS ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
   )
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
@@ -272,7 +272,7 @@ In this case the top level CMakeLists.txt file may be:
 
 # top level CMakeLists.txt
 CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0)
-FIND_PACKAGE(deal.II 9.3.0 REQUIRED)
+FIND_PACKAGE(deal.II 10.0.0 REQUIRED)
 
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(myproject)
@@ -503,7 +503,7 @@ The DEAL_II_INITIALIZE_CACHED_VARIABLES macro is responsible
 for setting up cached variables and has to invoked before the
 PROJECT call:
 
-FIND_PACKAGE(deal.II 9.3.0 REQUIRED)
+FIND_PACKAGE(deal.II 10.0.0 REQUIRED)
 
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 
@@ -647,7 +647,7 @@ INSTALL(DIRECTORY run DESTINATION share/mycode/run)
 

-FIND_PACKAGE(deal.II 9.3.0 REQUIRED
+FIND_PACKAGE(deal.II 10.0.0 REQUIRED
   HINTS
     ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
     # You can specify additional hints for search paths here, e.g.
diff --git a/doc/users/testsuite.html b/doc/users/testsuite.html
index 41ca8a1197..dd93124847 100644
--- a/doc/users/testsuite.html
+++ b/doc/users/testsuite.html
@@ -111,7 +111,7 @@ SET(TARGET step-1)
 SET(TARGET_SRC step-1.cc)
 
 CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0)
-FIND_PACKAGE(deal.II 9.3.0 REQUIRED
+FIND_PACKAGE(deal.II 10.0.0 REQUIRED
   HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR}
   )
 
@@ -216,7 +216,7 @@ tests/support/my_test_2.output
# top-level CMakelists.txt CMAKE_MINIMUM_REQUIRED(VERSION 3.1.0) -FIND_PACKAGE(deal.II 9.3.0 REQUIRED +FIND_PACKAGE(deal.II 10.0.0 REQUIRED HINTS ${deal.II_DIR} ${DEAL_II_DIR} ../ ../../ $ENV{DEAL_II_DIR} ) -- 2.39.5