CMakeLists.txt 460 B

123456789
  1. # The name of our project is "HELLO". CMakeLists files in this project can
  2. # refer to the root source directory of the project as ${HELLO_SOURCE_DIR} and
  3. # to the root binary directory of the project as ${HELLO_BINARY_DIR}.
  4. PROJECT(HELLO)
  5. # Recurse into the "Hello" and "Demo" subdirectories. This does not actually
  6. # cause another cmake executable to run. The same process will walk through
  7. # the project's entire directory structure.
  8. SUBDIRS(Hello Demo)