root/tests/CMakeLists.txt @ 87

Revision 87, 1.7 kB (checked in by smidl, 16 years ago)

new tests

  • Property svn:eol-style set to native
Line 
1# Make sure the compiler can find include files from our Bdm 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## Save all needed libraries in variable BdmLibs
8#SET(BdmLibs bdm itpp_debug)
9SET(BdmLibs bdm itpp)
10
11IF(WIN32)
12        SET(BdmLibs ${BdmLibs} libacml_dll)
13ENDIF(WIN32)
14
15# Add executable called "helloDemo" that is built from the source files
16# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
17add_executable (chmat_test chmat_test.cpp)
18target_link_libraries (chmat_test ${BdmLibs})
19
20add_executable (ldmat_test ldmat_test.cpp)
21target_link_libraries (ldmat_test ${BdmLibs})
22
23add_executable (fsqmat_test fsqmat_test.cpp)
24target_link_libraries (fsqmat_test ${BdmLibs})
25
26
27add_executable (loggers_test loggers_test.cpp)
28target_link_libraries (loggers_test ${BdmLibs})
29
30add_executable (test0 test0.cpp)
31add_executable (testKF testKF.cpp)
32add_executable (testPF testPF.cpp)
33add_executable (testSmp testSmp.cpp)
34add_executable (testEpdf testEpdf.cpp)
35add_executable (testResample testResample.cpp)
36add_executable (testKF_QR testKF_QR.cpp)
37add_executable (testKF_QRexh testKF_QRexh.cpp)
38add_executable (testUI testUI.cpp)
39
40
41# Link the executable to the Hello library.
42target_link_libraries (test0 ${BdmLibs})
43target_link_libraries (testKF ${BdmLibs})
44target_link_libraries (testPF ${BdmLibs})
45target_link_libraries (testSmp ${BdmLibs})
46target_link_libraries (testEpdf ${BdmLibs})
47target_link_libraries (testResample ${BdmLibs})
48target_link_libraries (testKF_QR ${BdmLibs})
49target_link_libraries (testKF_QRexh ${BdmLibs})
50target_link_libraries (testUI ${BdmLibs})
Note: See TracBrowser for help on using the browser.