From: maier Date: Wed, 24 Oct 2012 15:51:40 +0000 (+0000) Subject: Bugfixes X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cc54dbe951fc18552cab0cd4e258873a640a1e0;p=dealii-svn.git Bugfixes git-svn-id: https://svn.dealii.org/branches/branch_cmake@27194 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake b/deal.II/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake index 7f9ab0245d..8b7179637c 100644 --- a/deal.II/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake +++ b/deal.II/cmake/macros/macro_deal_ii_initialize_cached_variables.cmake @@ -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.") diff --git a/deal.II/examples/step-1/CMakeLists.txt b/deal.II/examples/step-1/CMakeLists.txt index 1325cff4fe..a04af7a169 100644 --- a/deal.II/examples/step-1/CMakeLists.txt +++ b/deal.II/examples/step-1/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-10/CMakeLists.txt b/deal.II/examples/step-10/CMakeLists.txt index eb6e8fe17b..183a6e0924 100644 --- a/deal.II/examples/step-10/CMakeLists.txt +++ b/deal.II/examples/step-10/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-11/CMakeLists.txt b/deal.II/examples/step-11/CMakeLists.txt index 31bfe864dd..ca78de0f09 100644 --- a/deal.II/examples/step-11/CMakeLists.txt +++ b/deal.II/examples/step-11/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-12/CMakeLists.txt b/deal.II/examples/step-12/CMakeLists.txt index 2b1efa8f09..32180762a9 100644 --- a/deal.II/examples/step-12/CMakeLists.txt +++ b/deal.II/examples/step-12/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-13/CMakeLists.txt b/deal.II/examples/step-13/CMakeLists.txt index 6857667342..792a553441 100644 --- a/deal.II/examples/step-13/CMakeLists.txt +++ b/deal.II/examples/step-13/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-14/CMakeLists.txt b/deal.II/examples/step-14/CMakeLists.txt index e246696bc4..a0abce3cff 100644 --- a/deal.II/examples/step-14/CMakeLists.txt +++ b/deal.II/examples/step-14/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-15/CMakeLists.txt b/deal.II/examples/step-15/CMakeLists.txt index 2ac963cbe4..807826dc0a 100644 --- a/deal.II/examples/step-15/CMakeLists.txt +++ b/deal.II/examples/step-15/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-16/CMakeLists.txt b/deal.II/examples/step-16/CMakeLists.txt index 251ec2ef8e..65a150798b 100644 --- a/deal.II/examples/step-16/CMakeLists.txt +++ b/deal.II/examples/step-16/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-17/CMakeLists.txt b/deal.II/examples/step-17/CMakeLists.txt index 92659d67a3..cd3ccc6f0c 100644 --- a/deal.II/examples/step-17/CMakeLists.txt +++ b/deal.II/examples/step-17/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-18/CMakeLists.txt b/deal.II/examples/step-18/CMakeLists.txt index be5af51439..480288e6cf 100644 --- a/deal.II/examples/step-18/CMakeLists.txt +++ b/deal.II/examples/step-18/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-19/CMakeLists.txt b/deal.II/examples/step-19/CMakeLists.txt index 43f71f28db..81247590dc 100644 --- a/deal.II/examples/step-19/CMakeLists.txt +++ b/deal.II/examples/step-19/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-2/CMakeLists.txt b/deal.II/examples/step-2/CMakeLists.txt index ebc27b0697..17ebc5e4e6 100644 --- a/deal.II/examples/step-2/CMakeLists.txt +++ b/deal.II/examples/step-2/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-20/CMakeLists.txt b/deal.II/examples/step-20/CMakeLists.txt index 72a91a5d89..854bd04820 100644 --- a/deal.II/examples/step-20/CMakeLists.txt +++ b/deal.II/examples/step-20/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-21/CMakeLists.txt b/deal.II/examples/step-21/CMakeLists.txt index 8517d99529..d64a19e947 100644 --- a/deal.II/examples/step-21/CMakeLists.txt +++ b/deal.II/examples/step-21/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-22/CMakeLists.txt b/deal.II/examples/step-22/CMakeLists.txt index 29c4377e35..3b7779c3b1 100644 --- a/deal.II/examples/step-22/CMakeLists.txt +++ b/deal.II/examples/step-22/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-23/CMakeLists.txt b/deal.II/examples/step-23/CMakeLists.txt index 068e919303..032ea9c271 100644 --- a/deal.II/examples/step-23/CMakeLists.txt +++ b/deal.II/examples/step-23/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-24/CMakeLists.txt b/deal.II/examples/step-24/CMakeLists.txt index f064d5f9a2..0de6c25176 100644 --- a/deal.II/examples/step-24/CMakeLists.txt +++ b/deal.II/examples/step-24/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-25/CMakeLists.txt b/deal.II/examples/step-25/CMakeLists.txt index 949709dc6d..2ab22283b9 100644 --- a/deal.II/examples/step-25/CMakeLists.txt +++ b/deal.II/examples/step-25/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-26/CMakeLists.txt b/deal.II/examples/step-26/CMakeLists.txt index eb5b6b658b..b191cf359a 100644 --- a/deal.II/examples/step-26/CMakeLists.txt +++ b/deal.II/examples/step-26/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-27/CMakeLists.txt b/deal.II/examples/step-27/CMakeLists.txt index 1abe5f4958..b63f5d6901 100644 --- a/deal.II/examples/step-27/CMakeLists.txt +++ b/deal.II/examples/step-27/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-28/CMakeLists.txt b/deal.II/examples/step-28/CMakeLists.txt index 91509a690a..5a973120a9 100644 --- a/deal.II/examples/step-28/CMakeLists.txt +++ b/deal.II/examples/step-28/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-29/CMakeLists.txt b/deal.II/examples/step-29/CMakeLists.txt index a5967bc460..dcde815b6b 100644 --- a/deal.II/examples/step-29/CMakeLists.txt +++ b/deal.II/examples/step-29/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-3/CMakeLists.txt b/deal.II/examples/step-3/CMakeLists.txt index 1ea287254c..89d45f4c4a 100644 --- a/deal.II/examples/step-3/CMakeLists.txt +++ b/deal.II/examples/step-3/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-30/CMakeLists.txt b/deal.II/examples/step-30/CMakeLists.txt index f21fea03ea..ea950b6731 100644 --- a/deal.II/examples/step-30/CMakeLists.txt +++ b/deal.II/examples/step-30/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-31/CMakeLists.txt b/deal.II/examples/step-31/CMakeLists.txt index 12f873cc7d..0b49581fab 100644 --- a/deal.II/examples/step-31/CMakeLists.txt +++ b/deal.II/examples/step-31/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-32/CMakeLists.txt b/deal.II/examples/step-32/CMakeLists.txt index 6fb8cfac91..e5d3814d89 100644 --- a/deal.II/examples/step-32/CMakeLists.txt +++ b/deal.II/examples/step-32/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-33/CMakeLists.txt b/deal.II/examples/step-33/CMakeLists.txt index 90c7480d5f..af3eea68c6 100644 --- a/deal.II/examples/step-33/CMakeLists.txt +++ b/deal.II/examples/step-33/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-34/CMakeLists.txt b/deal.II/examples/step-34/CMakeLists.txt index 90b8092cc1..ce24d4b7db 100644 --- a/deal.II/examples/step-34/CMakeLists.txt +++ b/deal.II/examples/step-34/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-35/CMakeLists.txt b/deal.II/examples/step-35/CMakeLists.txt index f940c10ea8..2bb458d040 100644 --- a/deal.II/examples/step-35/CMakeLists.txt +++ b/deal.II/examples/step-35/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-36/CMakeLists.txt b/deal.II/examples/step-36/CMakeLists.txt index bc10f02080..497f26316a 100644 --- a/deal.II/examples/step-36/CMakeLists.txt +++ b/deal.II/examples/step-36/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-37/CMakeLists.txt b/deal.II/examples/step-37/CMakeLists.txt index 1cea676370..954739a9e8 100644 --- a/deal.II/examples/step-37/CMakeLists.txt +++ b/deal.II/examples/step-37/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-38/CMakeLists.txt b/deal.II/examples/step-38/CMakeLists.txt index 30efce27d9..1ca7f6bbb4 100644 --- a/deal.II/examples/step-38/CMakeLists.txt +++ b/deal.II/examples/step-38/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-39/CMakeLists.txt b/deal.II/examples/step-39/CMakeLists.txt index adcf554c98..b6added720 100644 --- a/deal.II/examples/step-39/CMakeLists.txt +++ b/deal.II/examples/step-39/CMakeLists.txt @@ -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) - diff --git a/deal.II/examples/step-4/CMakeLists.txt b/deal.II/examples/step-4/CMakeLists.txt index 2c54410d67..b53d92903e 100644 --- a/deal.II/examples/step-4/CMakeLists.txt +++ b/deal.II/examples/step-4/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-40/CMakeLists.txt b/deal.II/examples/step-40/CMakeLists.txt index 284a3948bf..b3757ff333 100644 --- a/deal.II/examples/step-40/CMakeLists.txt +++ b/deal.II/examples/step-40/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-41/CMakeLists.txt b/deal.II/examples/step-41/CMakeLists.txt index 9b8d9a1fda..944e82a913 100644 --- a/deal.II/examples/step-41/CMakeLists.txt +++ b/deal.II/examples/step-41/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-42/CMakeLists.txt b/deal.II/examples/step-42/CMakeLists.txt index 939d0ecb76..ec5982ef5b 100644 --- a/deal.II/examples/step-42/CMakeLists.txt +++ b/deal.II/examples/step-42/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-43/CMakeLists.txt b/deal.II/examples/step-43/CMakeLists.txt index 82f58860e8..e52761a6b2 100644 --- a/deal.II/examples/step-43/CMakeLists.txt +++ b/deal.II/examples/step-43/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-44/CMakeLists.txt b/deal.II/examples/step-44/CMakeLists.txt index ed10014a40..945b733008 100644 --- a/deal.II/examples/step-44/CMakeLists.txt +++ b/deal.II/examples/step-44/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-45/CMakeLists.txt b/deal.II/examples/step-45/CMakeLists.txt index 76b98fd299..625a58b445 100644 --- a/deal.II/examples/step-45/CMakeLists.txt +++ b/deal.II/examples/step-45/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-46/CMakeLists.txt b/deal.II/examples/step-46/CMakeLists.txt index 5ddb1df270..897f47ba01 100644 --- a/deal.II/examples/step-46/CMakeLists.txt +++ b/deal.II/examples/step-46/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-47/CMakeLists.txt b/deal.II/examples/step-47/CMakeLists.txt index ed2a054828..b60f7ad123 100644 --- a/deal.II/examples/step-47/CMakeLists.txt +++ b/deal.II/examples/step-47/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-48/CMakeLists.txt b/deal.II/examples/step-48/CMakeLists.txt index 247ba3376f..084d4c8225 100644 --- a/deal.II/examples/step-48/CMakeLists.txt +++ b/deal.II/examples/step-48/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-5/CMakeLists.txt b/deal.II/examples/step-5/CMakeLists.txt index 517e817421..ffce8c9c4c 100644 --- a/deal.II/examples/step-5/CMakeLists.txt +++ b/deal.II/examples/step-5/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-6/CMakeLists.txt b/deal.II/examples/step-6/CMakeLists.txt index e0c6c9ecd1..d10a8c9722 100644 --- a/deal.II/examples/step-6/CMakeLists.txt +++ b/deal.II/examples/step-6/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-7/CMakeLists.txt b/deal.II/examples/step-7/CMakeLists.txt index f2467462be..2717e426cf 100644 --- a/deal.II/examples/step-7/CMakeLists.txt +++ b/deal.II/examples/step-7/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-8/CMakeLists.txt b/deal.II/examples/step-8/CMakeLists.txt index 4efd35ac8a..c67c9bcb52 100644 --- a/deal.II/examples/step-8/CMakeLists.txt +++ b/deal.II/examples/step-8/CMakeLists.txt @@ -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() - diff --git a/deal.II/examples/step-9/CMakeLists.txt b/deal.II/examples/step-9/CMakeLists.txt index 106628991d..da6b5e581b 100644 --- a/deal.II/examples/step-9/CMakeLists.txt +++ b/deal.II/examples/step-9/CMakeLists.txt @@ -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() -