root/tests/CMakeLists.txt @ 19

Revision 19, 0.6 kB (checked in by smidl, 16 years ago)

Switch to CMake

  • Property svn:eol-style set to native
Line 
1# Make sure the compiler can find include files from our Hello library.
2include_directories (${BDM_SOURCE_DIR}/bdm)
3
4# Make sure the linker can find the Hello library once it is built.
5link_directories (${BDM_BINARY_DIR}/bdm)
6
7# Add executable called "helloDemo" that is built from the source files
8# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
9add_executable (test0 test0.cpp)
10add_executable (testKF testKF.cpp)
11add_executable (testPF testPF.cpp)
12
13# Link the executable to the Hello library.
14target_link_libraries (test0 bdm itpp)
15target_link_libraries (testKF bdm itpp)
16target_link_libraries (testPF bdm itpp)
Note: See TracBrowser for help on using the browser.