Updated formatting of documentation plus a little reorganization.
[cmake.git] / Example / Demo / CMakeLists.txt
blob477700fabf683b8dbb4cb1b635f200ad562d715a
1 # Make sure the compiler can find include files from our Hello library.
2 include_directories (${HELLO_SOURCE_DIR}/Hello)
4 # Make sure the linker can find the Hello library once it is built.
5 link_directories (${HELLO_BINARY_DIR}/Hello)
7 # Add executable called "helloDemo" that is built from the source files
8 # "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
9 add_executable (helloDemo demo.cxx demo_b.cxx)
11 # Link the executable to the Hello library.
12 target_link_libraries (helloDemo Hello)