# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
/* ---------------------------------------------------------------------
* $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.
*
// 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,
# 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...
# 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...
# 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...
# 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
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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:
# 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
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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:
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...
# 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:
# 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...
# 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...
# 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...
# 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...
# 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...
# 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...