From: bangerth Date: Sun, 22 Jun 2014 02:31:06 +0000 (+0000) Subject: Document in more detail what one line does and how to extend it. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6c3484fbee3511caa1fb684ab7aa9a62e8169cb;p=dealii-svn.git Document in more detail what one line does and how to extend it. git-svn-id: https://svn.dealii.org/trunk@33067 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-1/CMakeLists.txt b/deal.II/examples/step-1/CMakeLists.txt index 428fc65ec9..63ef8d7a6e 100644 --- a/deal.II/examples/step-1/CMakeLists.txt +++ b/deal.II/examples/step-1/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-1") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-10/CMakeLists.txt b/deal.II/examples/step-10/CMakeLists.txt index 0a4cb60fbf..a6e215935c 100644 --- a/deal.II/examples/step-10/CMakeLists.txt +++ b/deal.II/examples/step-10/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-10") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-11/CMakeLists.txt b/deal.II/examples/step-11/CMakeLists.txt index 402d86fe86..c04b27a60e 100644 --- a/deal.II/examples/step-11/CMakeLists.txt +++ b/deal.II/examples/step-11/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-11") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-12/CMakeLists.txt b/deal.II/examples/step-12/CMakeLists.txt index 0a6235f8b4..02fe0a792d 100644 --- a/deal.II/examples/step-12/CMakeLists.txt +++ b/deal.II/examples/step-12/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-12") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-13/CMakeLists.txt b/deal.II/examples/step-13/CMakeLists.txt index 83e7d37088..2b180e3910 100644 --- a/deal.II/examples/step-13/CMakeLists.txt +++ b/deal.II/examples/step-13/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-13") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-14/CMakeLists.txt b/deal.II/examples/step-14/CMakeLists.txt index dd098e3c05..85cf1a33eb 100644 --- a/deal.II/examples/step-14/CMakeLists.txt +++ b/deal.II/examples/step-14/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-14") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-15/CMakeLists.txt b/deal.II/examples/step-15/CMakeLists.txt index fa212ca958..ab9ddd7db6 100644 --- a/deal.II/examples/step-15/CMakeLists.txt +++ b/deal.II/examples/step-15/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-15") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-15/step-15.cc b/deal.II/examples/step-15/step-15.cc index 02ae8914e6..99ff76f365 100644 --- a/deal.II/examples/step-15/step-15.cc +++ b/deal.II/examples/step-15/step-15.cc @@ -1,7 +1,7 @@ /* --------------------------------------------------------------------- * $Id$ * - * Copyright (C) 2012 - 2013 by the deal.II authors + * Copyright (C) 2012 - 2014 by the deal.II authors * * This file is part of the deal.II library. * @@ -442,8 +442,8 @@ namespace Step15 // compute again. To ensure there are no hanging nodes of the old mesh in // the object, it's first cleared. To be on the safe side, we then also // make sure that the current solution's vector entries satisfy the - // hanging node constraints: - + // hanging node constraints (see the discussion in the documentation of + // the SolutionTransfer class for why this is necessary): hanging_node_constraints.clear(); DoFTools::make_hanging_node_constraints(dof_handler, diff --git a/deal.II/examples/step-16/CMakeLists.txt b/deal.II/examples/step-16/CMakeLists.txt index 23accbb499..d101a26d0c 100644 --- a/deal.II/examples/step-16/CMakeLists.txt +++ b/deal.II/examples/step-16/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-16") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-17/CMakeLists.txt b/deal.II/examples/step-17/CMakeLists.txt index c32373d483..d0b1da5685 100644 --- a/deal.II/examples/step-17/CMakeLists.txt +++ b/deal.II/examples/step-17/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-17") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-18/CMakeLists.txt b/deal.II/examples/step-18/CMakeLists.txt index 33af07ee5a..4651699d30 100644 --- a/deal.II/examples/step-18/CMakeLists.txt +++ b/deal.II/examples/step-18/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-18") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-19/CMakeLists.txt b/deal.II/examples/step-19/CMakeLists.txt index ee7378945d..2a10b56ae8 100644 --- a/deal.II/examples/step-19/CMakeLists.txt +++ b/deal.II/examples/step-19/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-19") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # No sensible run target can be defined for this example step diff --git a/deal.II/examples/step-2/CMakeLists.txt b/deal.II/examples/step-2/CMakeLists.txt index 1f6c77d1f6..5458819d35 100644 --- a/deal.II/examples/step-2/CMakeLists.txt +++ b/deal.II/examples/step-2/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-2") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-20/CMakeLists.txt b/deal.II/examples/step-20/CMakeLists.txt index 80f9eff383..e4a0deb7fd 100644 --- a/deal.II/examples/step-20/CMakeLists.txt +++ b/deal.II/examples/step-20/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-20") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-21/CMakeLists.txt b/deal.II/examples/step-21/CMakeLists.txt index c25f27fa41..fb45a3a967 100644 --- a/deal.II/examples/step-21/CMakeLists.txt +++ b/deal.II/examples/step-21/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-21") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-22/CMakeLists.txt b/deal.II/examples/step-22/CMakeLists.txt index 03e2ef3408..af328bc923 100644 --- a/deal.II/examples/step-22/CMakeLists.txt +++ b/deal.II/examples/step-22/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-22") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-23/CMakeLists.txt b/deal.II/examples/step-23/CMakeLists.txt index d1a264462d..c41b05ddd8 100644 --- a/deal.II/examples/step-23/CMakeLists.txt +++ b/deal.II/examples/step-23/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-23") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-24/CMakeLists.txt b/deal.II/examples/step-24/CMakeLists.txt index d6b05d9c29..a90683c4ae 100644 --- a/deal.II/examples/step-24/CMakeLists.txt +++ b/deal.II/examples/step-24/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-24") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-25/CMakeLists.txt b/deal.II/examples/step-25/CMakeLists.txt index 40880a12c3..17697e72b4 100644 --- a/deal.II/examples/step-25/CMakeLists.txt +++ b/deal.II/examples/step-25/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-25") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-26/CMakeLists.txt b/deal.II/examples/step-26/CMakeLists.txt index 9b68681f1e..b4b9db4f77 100644 --- a/deal.II/examples/step-26/CMakeLists.txt +++ b/deal.II/examples/step-26/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-26") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-27/CMakeLists.txt b/deal.II/examples/step-27/CMakeLists.txt index ca6124d2b1..782867ff33 100644 --- a/deal.II/examples/step-27/CMakeLists.txt +++ b/deal.II/examples/step-27/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-27") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-28/CMakeLists.txt b/deal.II/examples/step-28/CMakeLists.txt index 061aec950d..0f4d8a48a7 100644 --- a/deal.II/examples/step-28/CMakeLists.txt +++ b/deal.II/examples/step-28/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-28") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-29/CMakeLists.txt b/deal.II/examples/step-29/CMakeLists.txt index 6872bc4bfb..bb41d0e1b6 100644 --- a/deal.II/examples/step-29/CMakeLists.txt +++ b/deal.II/examples/step-29/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-29") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-3/CMakeLists.txt b/deal.II/examples/step-3/CMakeLists.txt index e6a829260b..63b429c76f 100644 --- a/deal.II/examples/step-3/CMakeLists.txt +++ b/deal.II/examples/step-3/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-3") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-30/CMakeLists.txt b/deal.II/examples/step-30/CMakeLists.txt index 777a189f0a..24a9aaa061 100644 --- a/deal.II/examples/step-30/CMakeLists.txt +++ b/deal.II/examples/step-30/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-30") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-31/CMakeLists.txt b/deal.II/examples/step-31/CMakeLists.txt index f21c9612ea..1377ee4951 100644 --- a/deal.II/examples/step-31/CMakeLists.txt +++ b/deal.II/examples/step-31/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-31") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-32/CMakeLists.txt b/deal.II/examples/step-32/CMakeLists.txt index 7a72d94c82..f15c228555 100644 --- a/deal.II/examples/step-32/CMakeLists.txt +++ b/deal.II/examples/step-32/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-32") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Define the output that should be cleaned: diff --git a/deal.II/examples/step-33/CMakeLists.txt b/deal.II/examples/step-33/CMakeLists.txt index 308db41050..29cff211c9 100644 --- a/deal.II/examples/step-33/CMakeLists.txt +++ b/deal.II/examples/step-33/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-33") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # A custom command line to run the program diff --git a/deal.II/examples/step-34/CMakeLists.txt b/deal.II/examples/step-34/CMakeLists.txt index b3b025bd9b..b26a42f628 100644 --- a/deal.II/examples/step-34/CMakeLists.txt +++ b/deal.II/examples/step-34/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-34") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-35/CMakeLists.txt b/deal.II/examples/step-35/CMakeLists.txt index c35bddd9cf..bbe688e0dd 100644 --- a/deal.II/examples/step-35/CMakeLists.txt +++ b/deal.II/examples/step-35/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-35") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-36/CMakeLists.txt b/deal.II/examples/step-36/CMakeLists.txt index 4d1eed8b19..0a60cd8710 100644 --- a/deal.II/examples/step-36/CMakeLists.txt +++ b/deal.II/examples/step-36/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-36") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-37/CMakeLists.txt b/deal.II/examples/step-37/CMakeLists.txt index 07a25bc701..925fa0e74a 100644 --- a/deal.II/examples/step-37/CMakeLists.txt +++ b/deal.II/examples/step-37/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-37") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-38/CMakeLists.txt b/deal.II/examples/step-38/CMakeLists.txt index 0a84a6cbf5..04a386b2ac 100644 --- a/deal.II/examples/step-38/CMakeLists.txt +++ b/deal.II/examples/step-38/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-38") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-39/CMakeLists.txt b/deal.II/examples/step-39/CMakeLists.txt index dbe711b3c8..afce038bd7 100644 --- a/deal.II/examples/step-39/CMakeLists.txt +++ b/deal.II/examples/step-39/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-39") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-4/CMakeLists.txt b/deal.II/examples/step-4/CMakeLists.txt index 90d8b42e61..f2480e9458 100644 --- a/deal.II/examples/step-4/CMakeLists.txt +++ b/deal.II/examples/step-4/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-4") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-40/CMakeLists.txt b/deal.II/examples/step-40/CMakeLists.txt index f024774a4e..f5aee3e5ff 100644 --- a/deal.II/examples/step-40/CMakeLists.txt +++ b/deal.II/examples/step-40/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-40") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-41/CMakeLists.txt b/deal.II/examples/step-41/CMakeLists.txt index 1ecef89b0a..df23507361 100644 --- a/deal.II/examples/step-41/CMakeLists.txt +++ b/deal.II/examples/step-41/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-41") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-42/CMakeLists.txt b/deal.II/examples/step-42/CMakeLists.txt index 78a6df2f1f..0c0cb561fe 100644 --- a/deal.II/examples/step-42/CMakeLists.txt +++ b/deal.II/examples/step-42/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-42") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Define the output that should be cleaned: diff --git a/deal.II/examples/step-43/CMakeLists.txt b/deal.II/examples/step-43/CMakeLists.txt index 62b492245f..538e0daf50 100644 --- a/deal.II/examples/step-43/CMakeLists.txt +++ b/deal.II/examples/step-43/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-43") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-44/CMakeLists.txt b/deal.II/examples/step-44/CMakeLists.txt index 323dba1d27..b81f160b0e 100644 --- a/deal.II/examples/step-44/CMakeLists.txt +++ b/deal.II/examples/step-44/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-44") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-45/CMakeLists.txt b/deal.II/examples/step-45/CMakeLists.txt index 833b880de3..d1f751ad7c 100644 --- a/deal.II/examples/step-45/CMakeLists.txt +++ b/deal.II/examples/step-45/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-45") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-46/CMakeLists.txt b/deal.II/examples/step-46/CMakeLists.txt index 02ff830ab7..2e25016a11 100644 --- a/deal.II/examples/step-46/CMakeLists.txt +++ b/deal.II/examples/step-46/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-46") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-47/CMakeLists.txt b/deal.II/examples/step-47/CMakeLists.txt index 0321ee6c15..739a183271 100644 --- a/deal.II/examples/step-47/CMakeLists.txt +++ b/deal.II/examples/step-47/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-47") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-48/CMakeLists.txt b/deal.II/examples/step-48/CMakeLists.txt index de84ad3c41..d8c1cd4add 100644 --- a/deal.II/examples/step-48/CMakeLists.txt +++ b/deal.II/examples/step-48/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-48") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-49/CMakeLists.txt b/deal.II/examples/step-49/CMakeLists.txt index 3823d4ee9e..c7048b0a0c 100644 --- a/deal.II/examples/step-49/CMakeLists.txt +++ b/deal.II/examples/step-49/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-49") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +F# ILE(GLOB_RECURSE TARGET_INC "include/*.h") +S# ET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-5/CMakeLists.txt b/deal.II/examples/step-5/CMakeLists.txt index 90b5c71779..fbabba4167 100644 --- a/deal.II/examples/step-5/CMakeLists.txt +++ b/deal.II/examples/step-5/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-5") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-50/CMakeLists.txt b/deal.II/examples/step-50/CMakeLists.txt index 3a16b1326e..61e2d33ec5 100644 --- a/deal.II/examples/step-50/CMakeLists.txt +++ b/deal.II/examples/step-50/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-50") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Define the output that should be cleaned: diff --git a/deal.II/examples/step-51/CMakeLists.txt b/deal.II/examples/step-51/CMakeLists.txt index 6d7622ff1d..9768132b67 100644 --- a/deal.II/examples/step-51/CMakeLists.txt +++ b/deal.II/examples/step-51/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-51") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +F# ILE(GLOB_RECURSE TARGET_INC "include/*.h") +S# ET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-52/CMakeLists.txt b/deal.II/examples/step-52/CMakeLists.txt index ec29e873c4..7bc76ef3d8 100644 --- a/deal.II/examples/step-52/CMakeLists.txt +++ b/deal.II/examples/step-52/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-52") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +FI# LE(GLOB_RECURSE TARGET_INC "include/*.h") +SE# T(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-6/CMakeLists.txt b/deal.II/examples/step-6/CMakeLists.txt index 834f0b52d3..e2b1c01a0c 100644 --- a/deal.II/examples/step-6/CMakeLists.txt +++ b/deal.II/examples/step-6/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-6") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-7/CMakeLists.txt b/deal.II/examples/step-7/CMakeLists.txt index e2efb44271..3270dbbd51 100644 --- a/deal.II/examples/step-7/CMakeLists.txt +++ b/deal.II/examples/step-7/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-7") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-8/CMakeLists.txt b/deal.II/examples/step-8/CMakeLists.txt index ecffed5bf6..138fd88acf 100644 --- a/deal.II/examples/step-8/CMakeLists.txt +++ b/deal.II/examples/step-8/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-8") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point... diff --git a/deal.II/examples/step-9/CMakeLists.txt b/deal.II/examples/step-9/CMakeLists.txt index 6d64c9f6ae..66ddc7afaa 100644 --- a/deal.II/examples/step-9/CMakeLists.txt +++ b/deal.II/examples/step-9/CMakeLists.txt @@ -5,10 +5,18 @@ # Set the name of the project and target: SET(TARGET "step-9") -# Declare all source files the target consists of: +# Declare all source files the target consists of. Here, this is only +# the one step-X.cc file, but as you expand your project you may wish +# to add other source files as well. If your project becomes much larger, +# you may want to either replace the following statement by something like +# FILE(GLOB_RECURSE TARGET_SRC "source/*.cc") +# FILE(GLOB_RECURSE TARGET_INC "include/*.h") +# SET(TARGET_SRC ${TARGET_SRC} ${TARGET_INC}) +# or switch altogether to the large project CMakeLists.txt file discussed +# in the "CMake in user projects" page accessible from the "User info" +# page of the documentation. SET(TARGET_SRC ${TARGET}.cc - # You can specify additional files here! ) # Usually, you will not need to modify anything beyond this point...