File: CMakeLists.txt

package info (click to toggle)
cmake 2.0.5-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,996 kB
  • ctags: 6,865
  • sloc: cpp: 48,042; ansic: 27,766; sh: 1,481; lex: 438; lisp: 118; makefile: 83; perl: 60; tcl: 55; php: 25; python: 25; ruby: 22
file content (9 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
# 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.
SUBDIRS(Hello Demo)