CMakeLists.txt 490 B

12345678910
  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. add_subdirectory (Hello)
  9. add_subdirectory (Demo)