cmake-d/samples/HelloTango/Demo/CMakeLists.txt

22 lines
525 B
Text
Raw Normal View History

# Make sure the compiler can find include files from our Hello library.
2007-08-28 11:29:26 +00:00
INCLUDE_DIRECTORIES (
${CMAKE_BINARY_DIR}
${CMAKE_SOURCE_DIR}
)
# Make sure the linker can find the Hello library once it is built.
2007-08-28 11:29:26 +00:00
LINK_DIRECTORIES (
${HELLO_BINARY_DIR}/Hello
)
# Add executable called "helloDemo" that is built from the source files
# "demo.cxx" and "demo_b.cxx". The extensions are automatically found.
2007-08-28 11:29:26 +00:00
ADD_EXECUTABLE (helloDemo
demo.d
)
# Link the executable to the Hello library.
2007-08-28 11:29:26 +00:00
TARGET_LINK_LIBRARIES (helloDemo
Hello
)