# Make sure the compiler can find include files from our Hello library.
include_directories (${BDM_SOURCE_DIR}/bdm)

# Make sure the linker can find the Hello library once it is built.
link_directories (${BDM_BINARY_DIR}/bdm)

# Add executable called "helloDemo" that is built from the source files
# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
add_executable (test0 test0.cpp)
add_executable (testKF testKF.cpp)
add_executable (testPF testPF.cpp)

# Link the executable to the Hello library.
target_link_libraries (test0 bdm itpp)
target_link_libraries (testKF bdm itpp)
target_link_libraries (testPF bdm itpp)
