]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Document in more detail what one line does and how to extend it.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 22 Jun 2014 02:31:06 +0000 (02:31 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sun, 22 Jun 2014 02:31:06 +0000 (02:31 +0000)
git-svn-id: https://svn.dealii.org/trunk@33067 0785d39b-7218-0410-832d-ea1e28bc413d

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

index 428fc65ec9362bdcbc1e52023d30a6646215b385..63ef8d7a6e1462e3fb925b6ac8a254645aff5049 100644 (file)
@@ -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...
index 0a4cb60fbf23186bed3d177815d3e1d95ac660e4..a6e215935cd3450029ae07d6b832c427c1a86d23 100644 (file)
@@ -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...
index 402d86fe86bb40bd89412344c98a6a334f1eecc9..c04b27a60e2f0530bb4ca77387bb8fc83e5f3cc1 100644 (file)
@@ -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...
index 0a6235f8b419ac466d7b3312a88f9ac981dbc7da..02fe0a792dc326a969c1cf654b313671bc0e81b1 100644 (file)
@@ -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...
index 83e7d37088fd3f14f7cf6924daf578affb1adc95..2b180e39103e44b9b3e852d258df417c8cbb26c8 100644 (file)
@@ -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...
index dd098e3c05d989e9a96f787e7048735cf1398acb..85cf1a33eb763564faf7da291d2da391125bab29 100644 (file)
@@ -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...
index fa212ca95807c2c5de92735c1ed744ab7dd9ec78..ab9ddd7db61b258c9b863ea764922ba5af24a431 100644 (file)
@@ -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...
index 02ae8914e616aa6d0448d56c0df2374d72c0c00e..99ff76f365ccbfe6604bdb7ccf3a643d01bb7b48 100644 (file)
@@ -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,
index 23accbb4997657049ebe9d5e99feabf577f55444..d101a26d0cc2f7608affc1db522e7f43d657df3f 100644 (file)
@@ -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...
index c32373d4834496b0968a41e327c691f37196a4e5..d0b1da56858630629788042f75b474cd00bd1014 100644 (file)
@@ -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...
index 33af07ee5a4cc8cdafe31dbff923c750b1df68f2..4651699d30a260b4fa505432b215ffa60c93dc9f 100644 (file)
@@ -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...
index ee7378945d77d95a2eb2c16241bfc9596b8104b5..2a10b56ae8c3accc9149d003d9c9eb2fff2b9e36 100644 (file)
@@ -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
index 1f6c77d1f65074dc6f143a9e1a1e271690b8363a..5458819d3509c6311ab06fd191a85f3a717d1676 100644 (file)
@@ -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...
index 80f9eff38315efda7360bf3250b8d5359a62466b..e4a0deb7fd16b3a46d7b3f598d40a1999b914aab 100644 (file)
@@ -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...
index c25f27fa418443c3b1413360a6a4a1e207b77327..fb45a3a9679d879b20e4eccc82ab3bcdb524318f 100644 (file)
@@ -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...
index 03e2ef3408638cc59203d0894d27cd3e98ba6f3e..af328bc923fcf0b470faecd26ec52518b448db3a 100644 (file)
@@ -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...
index d1a264462d58a57a7c514ae9b121e742b94b8858..c41b05ddd88d0dd4bc7800835300ed6a8b24fd8b 100644 (file)
@@ -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...
index d6b05d9c297d23db770b250f98d1d744d0e8c19f..a90683c4aebaaddb6cd4ee1408e009360778b243 100644 (file)
@@ -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...
index 40880a12c3f4556e05d26e87d4c62a38a62cf2ef..17697e72b4fe171f3ce8559ff319565a88805a58 100644 (file)
@@ -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...
index 9b68681f1e1a0c37d0135db05c74347b49bd221b..b4b9db4f770e039b241f558a793d3a6d84557308 100644 (file)
@@ -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...
index ca6124d2b181f5ed8ce9dbd765ec29bd9f9a51b9..782867ff33fae2a168e92ee9be3984270cb8e276 100644 (file)
@@ -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...
index 061aec950dba7a668ffd3f1fa5d05511930bf17a..0f4d8a48a7072945655a0110188445c66e98f70a 100644 (file)
@@ -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...
index 6872bc4bfbeb5234b98ad3628dbc48607d5e20ba..bb41d0e1b670ec076caedeab56c1fdd94fce9d00 100644 (file)
@@ -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...
index e6a829260b1e2dca47c8bd4b4e88c943642f427b..63b429c76f9570bf4606c52bbec37d0f22f5aca6 100644 (file)
@@ -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...
index 777a189f0a5075d06a7e2ad448fa36c896da856a..24a9aaa061283d94f4196f47cb179f90fca349b6 100644 (file)
@@ -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...
index f21c9612ea4a293d036448223449114d8b6485f7..1377ee49519febcf5ef21d8aef2bcabe981f1b69 100644 (file)
@@ -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...
index 7a72d94c82f4846785c0549d88fa967301b8590c..f15c2285557a677fd592ae2609f3181122a5460a 100644 (file)
@@ -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:
index 308db41050cd0f3132df713fe7d8bd18556d4141..29cff211c9eb6ea4b980fa583794fcf2ffa4f72e 100644 (file)
@@ -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
index b3b025bd9b4b5fcc6630c9bffc1d0f5569d3f184..b26a42f628aa84dc1ff489273aea78fbdce1719b 100644 (file)
@@ -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...
index c35bddd9cf9066133c4b8101244298532c80963e..bbe688e0dd0586491e84e538d1c20de8fc964945 100644 (file)
@@ -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...
index 4d1eed8b193887ba01b18367ff3964c05d8df54e..0a60cd87104b7d61a879c45a13ca9a261aaec410 100644 (file)
@@ -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...
index 07a25bc701387114f225065510810e8f1d1881a7..925fa0e74a7e20ffc79905612afa959320f39fb8 100644 (file)
@@ -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...
index 0a84a6cbf5447e8363f937e726bd6876e2eeff93..04a386b2ace3a08013396296e4a38c07433b06d7 100644 (file)
@@ -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...
index dbe711b3c8af76b0084e38d3419bd25fbc712658..afce038bd75cf19815a32d926a9356bafeb04d6c 100644 (file)
@@ -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...
index 90d8b42e6148d6e34c0fe9491e60ee54f17985bc..f2480e9458ea14d4f5de5b639d6e82f99a125346 100644 (file)
@@ -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...
index f024774a4e6407117dc1621291668d59590d993e..f5aee3e5ffef0801a65406624d0abb5dc745de67 100644 (file)
@@ -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...
index 1ecef89b0aa7b8af93a61a3a4898f38c83010361..df235073616218b8d9c0f2864b2dba6487972142 100644 (file)
@@ -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...
index 78a6df2f1f54c1ad3ebc5f38daee1913bdb5be37..0c0cb561fe990858669385a0c92bdf717371d949 100644 (file)
@@ -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:
index 62b492245f6aab3c88726eb2933bd941f2043da3..538e0daf50b3725625098ad185ccde579d8cf6cf 100644 (file)
@@ -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...
index 323dba1d2739d205fc5a4d2f8328a7aed4c6bc9d..b81f160b0ef92919e0c06bdca0716330d0a1f27e 100644 (file)
@@ -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...
index 833b880de34fe16e566e469ee638c29fa58522bf..d1f751ad7c340d27a4c25ac4da347eba65bd0f09 100644 (file)
@@ -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...
index 02ff830ab73de48351b67a880799f5f2ca2312a6..2e25016a115a6f388ec16d844ac3f6ad9bfd3bc8 100644 (file)
@@ -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...
index 0321ee6c15051194900fe5a93277a5dc1b878f6b..739a183271dfc5f1a855739a03f0f731b46e30ef 100644 (file)
@@ -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...
index de84ad3c414b6382f15b7e5e1acc81107f998cdb..d8c1cd4add9acc825b4ae18c9158c82361bf8140 100644 (file)
@@ -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...
index 3823d4ee9e5054477fb86293698d620ab08d65e8..c7048b0a0c83fcf5bb950bcbe6da51306e4da066 100644 (file)
@@ -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...
index 90b5c717794e28d02a3447cf10b104aafed4ccec..fbabba4167d3c071ab69f1083f3811f63d65be1b 100644 (file)
@@ -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...
index 3a16b1326e33115cc945b3e06ca7012add887ad0..61e2d33ec51d177900f4dfc5cee7926ae04b1d68 100644 (file)
@@ -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:
index 6d7622ff1d7841b4506cdc8125b19ac358e1cb63..9768132b67ca77243aceb46c22859e97608b4a30 100644 (file)
@@ -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...
index ec29e873c4e026b125899c7eb9b577aa38be7fd9..7bc76ef3d8b14c7cd66877f12373628ae4ea37cf 100644 (file)
@@ -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...
index 834f0b52d38e072fa6bbf663c3d4c618deeef06c..e2b1c01a0c3bc54301d13e84fa458f6f3ecc2f40 100644 (file)
@@ -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...
index e2efb44271f70874d4966492a28dcbc2245fcbeb..3270dbbd51bc283f6b920150bfbc781b550ce208 100644 (file)
@@ -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...
index ecffed5bf66f67443604cbfa31b5b0cdd21d5689..138fd88acf0a5a950ecc2d3d8f475ca3a675a628 100644 (file)
@@ -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...
index 6d64c9f6aea85837cca53a2c98edbb15c8495522..66ddc7afaa2bbc8404d9031c2f9794dcfdb99a87 100644 (file)
@@ -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...

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

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.