root/library/tests/CMakeLists.txt @ 424

Revision 424, 1.1 kB (checked in by vbarta, 15 years ago)

moved datalink tests to testsuite, added default initialization to datalink classes

  • 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)
3include_directories (./unittest-cpp)
4
5# Make sure the linker can find the Hello library once it is built.
6link_directories (${BDM_BINARY_DIR}/bdm)
7link_directories (./unittest-cpp)
8
9# Add executable called "helloDemo" that is built from the source files
10# "demo.cxx" and "demo_b.cxx".  The extensions are automatically found.
11
12# BASIC EXECS
13EXEC(loggers_test)
14
15EXEC(chmat_test)
16EXEC(ldmat_test)
17EXEC(fsqmat_test)
18EXEC(enorm_test)
19EXEC(egiw_test)
20EXEC(emix_test)
21EXEC(test0)
22EXEC(testResample)
23
24# ESTIM EXECS
25EXEC(arx_test)
26EXEC(arx_elem_test)
27EXEC(merger_test)
28EXEC(merger_2d_test)
29EXEC(merger_iter_test)
30EXEC(mixtures_test)
31
32EXEC(test_kalman)
33EXEC(test_particle)
34EXEC(testSmp)
35EXEC(testEpdf)
36EXEC(test_kalman_QR)
37EXEC(test_kalman_QRexh)
38
39EXEC(blas_test)
40
41# using UnitTest++
42add_executable(testsuite datalink_test.cpp rv_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp)
43target_link_libraries(testsuite bdm itpp unittest)
44
45add_subdirectory(tutorial)
46add_subdirectory(unittest-cpp)
Note: See TracBrowser for help on using the browser.