]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Bugfixes
authormaier <maier@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 24 Oct 2012 15:51:40 +0000 (15:51 +0000)
committermaier <maier@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 24 Oct 2012 15:51:40 +0000 (15:51 +0000)
git-svn-id: https://svn.dealii.org/branches/branch_cmake@27194 0785d39b-7218-0410-832d-ea1e28bc413d

49 files changed:
deal.II/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake
deal.II/examples/step-1/CMakeLists.txt
deal.II/examples/step-10/CMakeLists.txt
deal.II/examples/step-11/CMakeLists.txt
deal.II/examples/step-12/CMakeLists.txt
deal.II/examples/step-13/CMakeLists.txt
deal.II/examples/step-14/CMakeLists.txt
deal.II/examples/step-15/CMakeLists.txt
deal.II/examples/step-16/CMakeLists.txt
deal.II/examples/step-17/CMakeLists.txt
deal.II/examples/step-18/CMakeLists.txt
deal.II/examples/step-19/CMakeLists.txt
deal.II/examples/step-2/CMakeLists.txt
deal.II/examples/step-20/CMakeLists.txt
deal.II/examples/step-21/CMakeLists.txt
deal.II/examples/step-22/CMakeLists.txt
deal.II/examples/step-23/CMakeLists.txt
deal.II/examples/step-24/CMakeLists.txt
deal.II/examples/step-25/CMakeLists.txt
deal.II/examples/step-26/CMakeLists.txt
deal.II/examples/step-27/CMakeLists.txt
deal.II/examples/step-28/CMakeLists.txt
deal.II/examples/step-29/CMakeLists.txt
deal.II/examples/step-3/CMakeLists.txt
deal.II/examples/step-30/CMakeLists.txt
deal.II/examples/step-31/CMakeLists.txt
deal.II/examples/step-32/CMakeLists.txt
deal.II/examples/step-33/CMakeLists.txt
deal.II/examples/step-34/CMakeLists.txt
deal.II/examples/step-35/CMakeLists.txt
deal.II/examples/step-36/CMakeLists.txt
deal.II/examples/step-37/CMakeLists.txt
deal.II/examples/step-38/CMakeLists.txt
deal.II/examples/step-39/CMakeLists.txt
deal.II/examples/step-4/CMakeLists.txt
deal.II/examples/step-40/CMakeLists.txt
deal.II/examples/step-41/CMakeLists.txt
deal.II/examples/step-42/CMakeLists.txt
deal.II/examples/step-43/CMakeLists.txt
deal.II/examples/step-44/CMakeLists.txt
deal.II/examples/step-45/CMakeLists.txt
deal.II/examples/step-46/CMakeLists.txt
deal.II/examples/step-47/CMakeLists.txt
deal.II/examples/step-48/CMakeLists.txt
deal.II/examples/step-5/CMakeLists.txt
deal.II/examples/step-6/CMakeLists.txt
deal.II/examples/step-7/CMakeLists.txt
deal.II/examples/step-8/CMakeLists.txt
deal.II/examples/step-9/CMakeLists.txt

index 7f9ab0245d97836d414abd8b958183706a576c1e..8b7179637c546e0c0bfbfc9a0c4350a62fb20411 100644 (file)
@@ -35,9 +35,15 @@ MACRO(DEAL_II_INITIALIZE_CACHED_VARIABLES)
       )
   ENDIF()
 
-  SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING
-    "Choose the type of build, options are: Debug, Release"
-    )
+  IF(DEAL_II_BUILD_TYPE MATCHES "Debug")
+    SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING
+      "Choose the type of build, options are: Debug, Release"
+      )
+  ELSE()
+    SET(CMAKE_BUILD_TYPE "Release" CACHE STRING
+      "Choose the type of build, options are: Debug, Release"
+      )
+  ENDIF()
 
   SET(CMAKE_CXX_COMPILER ${DEAL_II_CXX_COMPILER} CACHE STRING
     "CXX Compiler.")
index 1325cff4fe9609b238f48eb05e0210394b8a7936..a04af7a16966f929ca697b995b12eb12ef5ef084 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-1 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-1")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index eb6e8fe17b83ab00932ccc2c6e166ecc0d07f374..183a6e09246f364a6b1c971a811ee464b017adeb 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-10 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-10")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 31bfe864dd14aaf03b07d03b51532c9d76db9141..ca78de0f091d84eb5b2b614fa04409c0cb7b23b1 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-11 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-11")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 2b1efa8f09c92a4a545d54b8236b3b480eb640d1..32180762a92d4cb30c368bbe8d8e3067f509d21c 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-12 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-12")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 685766734285728dc22741661c3ff3f496cbb1a3..792a5534413efc823409f4b444c2a8fe75b68aac 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-13 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-13")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index e246696bc476c5fd8cbb7b8007bda31aef2f273d..a0abce3cffb39a9623d3f08d952bd1789174289b 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-14 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-14")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 2ac963cbe4a153dc76cf581a3e1a871c09885814..807826dc0afbe6f9a6b31b9fd30faf36bbdaf627 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-15 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-15")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 251ec2ef8e951645157244686b8f9f883d195581..65a150798b1ac0516c57e4f4908d25eb0c7ea194 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-16 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-16")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 92659d67a317511dfcd2e8c2f8a60adca81c8c37..cd3ccc6f0c8a55d7b0c17968a7e533c847c17349 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-17 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-17")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -57,4 +40,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index be5af5143901ecc62db2a89855f02f6e484ad9c5..480288e6cf6d101e07998140835ac0d72ff93a8d 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-18 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-18")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -57,4 +40,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 43f71f28db9c694de2a791a4367e54655da0a43f..81247590dcb00cca5607c08994c46dc5d51b1376 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-19 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-19")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index ebc27b0697c303ebd768788792644e8b793ac1a1..17ebc5e4e63567146a804f75cc0a809dfc023871 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-2 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-2")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 72a91a5d89be397ada10f8cb0a92a5c46f151cfc..854bd04820a490e6acbe01e58a6888334cf8f80a 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-20 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-20")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 8517d9952901232b05eb943e0b60b5348aaaea6c..d64a19e947811e188284bc21274052c43104a471 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-21 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-21")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 29c4377e35312eddc3e0f14dcccc6656888c4d9c..3b7779c3b1dd2d0a9793069a14075658c2cda5c0 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-22 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-22")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 068e919303fb6333be71e7503d97e89b0a42b114..032ea9c2712d3dc4540af4a9c6632ab5796ab856 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-23 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-23")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index f064d5f9a2257492b23af9cfd8741f6367577685..0de6c25176f3c612a88eecd9521384b455dfb0de 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-24 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-24")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 949709dc6dd20d76da60085c7a3b74dadbf6aec7..2ab22283b9470dc0f1563e3a2e76919115f5c33b 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-25 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-25")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index eb5b6b658b8dcc4e6a01fb5bc22f21448f65c420..b191cf359a33d19cb9f1a735b27f8633fdd74136 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-26 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-26")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 1abe5f4958066c9dab98fcc0205aab37f88e9be1..b63f5d69014df7e5735613859a5febb3847e838b 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-27 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-27")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 91509a690a59258f1651b99ceb1961549abe4df2..5a973120a975cff939bcb55acd9389cdcaa0d6d3 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-28 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-28")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index a5967bc460819c500f87328c69d906c1c666279a..dcde815b6b298e680f403ca04da19e065157f99a 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-29 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-29")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 1ea287254c52a5b9d53666ce84267a7170a55eef..89d45f4c4ac450a1adb6e1af9dbf03dee9df07c8 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-3 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-3")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index f21fea03ea00db1e19538a071f634d8e208bcd88..ea950b6731ad3fb8774a276add2b9602313ee76c 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-30 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-30")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 12f873cc7d366a517daa0618218963caf48af7c6..0b49581fab4f519b0ba788a921fef6f66ed55e36 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-31 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-31")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 6fb8cfac91ee49c947c78cbd4183df7f581653c1..e5d3814d8922ca05c17339b8c3003d3607ec90ef 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-32 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-32")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -57,4 +40,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 90c7480d5f9a39dcb498693c8a261f33c2477023..af3eea68c60e709af236c10646fca721c15021ca 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-33 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-33")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 90b8092cc111692c329f8f22959b776fe8fbd6ef..ce24d4b7db6d97978bff094219ac26eddd2e7111 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-34 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-34")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index f940c10ea8ed577b3a3d9cbee7c43ad1074c3c59..2bb458d04013b3f42c11d8adcc86a870f4571352 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-35 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-35")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index bc10f020806e9297fe9fffdd3a394d9ed5752d41..497f26316ace6decab02b770d59d2b94af650c64 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-36 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-36")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -55,8 +38,6 @@ which is required for this tutorial step."
     )
 ENDIF()
 
-
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 1cea676370571e98f01aa590ab8cf3fe95f314f0..954739a9e8104767e86b226de8b2dc190b3c1ff7 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-37 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-37")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 30efce27d9c4843851f982b13006f81a289c8cc5..1ca7f6bbb4368e097d387a588aa965388945658a 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-38 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-38")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index adcf554c98e4937ad009315c10fb29436f6e8e74..b6added7209a3afb09d42d28177eb11faf5e36ec 100644 (file)
@@ -1,42 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-39 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-39")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-FIND_PACKAGE(Perl REQUIRED)
-
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -47,10 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
-ADD_CUSTOM_TARGET(postprocess
-  COMMAND ${PERL_EXECUTABLE} postprocess.pl deallog > output.dat
-  COMMENT "Postprocessing deallog"
-  )
-ADD_DEPENDENCIES(postprocess run)
-
index 2c54410d67d61f03431ef764bbef96706891822f..b53d92903e07505c3b78f992f619dd8668193a38 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-4 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-4")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 284a3948bf3554de7b9dc0b12aa423c91e8dcde0..b3757ff33368346a730aafcbc7719a877be7c2f0 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-40 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-40")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,9 +28,7 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 #
 # Are all dependencies fullfilled?
 #
-IF( NOT DEAL_II_WITH_PETSC OR
-    NOT DEAL_II_WITH_P4EST OR
-    DEAL_II_WITH_TBB )
+IF(NOT DEAL_II_WITH_PETSC OR NOT DEAL_II_WITH_P4EST OR DEAL_II_WITH_TBB)
   MESSAGE(FATAL_ERROR "
 Error! The deal.II library found at ${DEAL_II_PATH} was not configured with
     DEAL_II_WITH_PETSC = ON
@@ -60,4 +41,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 9b8d9a1fda09a88f5a051fc1c700bd941509d9fb..944e82a913982f7de6c7da3eef3c65c02fde468c 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-41 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-41")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 939d0ecb76b52adc7f1e485378dba2589eb92b39..ec5982ef5be97435393f8548d45e42cf5d701c38 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-42 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-42")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -58,4 +41,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 82f58860e8947d71a3b2698b9a85e80e63bf861f..e52761a6b2176998026284af309083677f3639e6 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-43 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-43")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index ed10014a40f0066fc762a42e74196ba6856aeaca..945b73300804c88780e2c743013782ade519848c 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-44 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-44")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 76b98fd299b29bff1c93d5c3aa618999115af075..625a58b4456574920e0706228fc3579d0312d24f 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-45 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-45")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 5ddb1df270d044a27e64e520426e323517dfca16..897f47ba01c45bc297817545e3cb3645c90a1e8d 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-46 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-46")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -56,4 +39,3 @@ ENDIF()
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index ed2a0548286719da46cd79acab237f65dc353f22..b60f7ad123263388842d3d221ec8219178f3f471 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-47 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-47")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 247ba3376f4181b0cc6dd7d91760cf2ff7832f65..084d4c82251c7baa4afca2182c4a3100b5e7ab9a 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-48 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-48")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 517e8174215a11c71f873cf98b7f98d6e48e22df..ffce8c9c4cd2da12c7c825649534e2d76eb7d198 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-5 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-5")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index e0c6c9ecd19bcb61c770a32cc051bc1c956bed1b..d10a8c97225b4345e6cf4d4fc758d80fbbc29691 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-6 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-6")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index f2467462be8fd03909c4b4086dd5fff7c3912946..2717e426cfe150ae66b3f440f8426c08fdcfa4e1 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-7 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-7")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 4efd35ac8ad60905d56ee5a32f571588acb54df6..c67c9bcb522cd62b8dc4286deae699d54fb3800c 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-8 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-8")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-
index 106628991d59bef5d7d56cb7ca3bb1e4417e9630..da6b5e581bca8ec412c8a834d44e453cfaf25971 100644 (file)
@@ -1,40 +1,23 @@
 ##
-#         An autopilot CMakeLists.txt example for a small project
-#                        using the deal.II library
+#  CMake script for the step-9 tutorial program:
 ##
 
-#
 # Set the name of the project and target:
-#
 SET(TARGET "step-9")
 
-#
 # Declare all source files the target consists of:
-#
 SET(TARGET_SRC
   ${TARGET}.cc
   # You can specify additional files here!
   )
 
-#
-# Specify files that will be deleted when calling 'make runclean' or
-# 'make distclean':
-#
-SET(CLEAN_UP_FILES *.log *.gmv *.gnuplot *.gpl *.eps *.pov *.vtk *.ucd *.d2)
-
-
 # Usually, you will not need to modify anything beyond this point...
 
 CMAKE_MINIMUM_REQUIRED(VERSION 2.8.8)
 
-# Search for the deal.II library:
 FIND_PACKAGE(deal.II 8.0 REQUIRED
   HINTS
-    ${DEAL_II_DIRS}
-  # Additional hints for possible library locations:
-    ../ ../../ ../../../ ../../../../../
-  # Also look for hints from environment:
-    $ENV{DEAL_II_DIR} $ENV{DEAL_DIR}
+    ${DEAL_II_DIRS} ../ ../../ ../../../ ../../../../../ $ENV{DEAL_II_DIR}
   #
   # If the deal.II library cannot be found (because it is not installed at a
   # default location or your project resides at an uncommon place), you
@@ -45,4 +28,3 @@ FIND_PACKAGE(deal.II 8.0 REQUIRED
 DEAL_II_INITIALIZE_CACHED_VARIABLES()
 PROJECT(${TARGET})
 DEAL_II_INVOKE_AUTOPILOT()
-

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.