Revision eaf703f16082fdd79983e32356aa20e64f94bd8b authored by Stephen Kelly on 09 February 2014, 21:30:30 UTC, committed by Stephen Kelly on 09 February 2014, 21:30:30 UTC
Use the version number of the specified release, or of the current
development version if the release is not yet made.
1 parent 1cc3e9f
Raw File
CMakeLists.txt
# The name of our project is "HELLO".  CMakeLists files in this project can
# refer to the root source directory of the project as ${HELLO_SOURCE_DIR} and
# to the root binary directory of the project as ${HELLO_BINARY_DIR}.
project (HELLO)

# Recurse into the "Hello" and "Demo" subdirectories.  This does not actually
# cause another cmake executable to run.  The same process will walk through
# the project's entire directory structure.
add_subdirectory (Hello)
add_subdirectory (Demo)
back to top