root/library/tests/CMakeLists.txt @ 425

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

moved logger test to testsuite, updated logger docs (a bit)

  • 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
12EXEC(chmat_test)
13EXEC(ldmat_test)
14EXEC(fsqmat_test)
15EXEC(enorm_test)
16EXEC(egiw_test)
17EXEC(emix_test)
18EXEC(test0)
19EXEC(testResample)
20
21# ESTIM EXECS
22EXEC(arx_test)
23EXEC(arx_elem_test)
24EXEC(merger_test)
25EXEC(merger_2d_test)
26EXEC(merger_iter_test)
27EXEC(mixtures_test)
28
29EXEC(test_kalman)
30EXEC(test_particle)
31EXEC(testSmp)
32EXEC(testEpdf)
33EXEC(test_kalman_QR)
34EXEC(test_kalman_QRexh)
35
36EXEC(blas_test)
37
38# using UnitTest++
39add_executable(testsuite datalink_test.cpp loggers_test.cpp rv_test.cpp testsuite.cpp test_user_info.cpp test_util.cpp test_util.h test_shared_ptr.cpp)
40target_link_libraries(testsuite bdm itpp unittest)
41
42add_subdirectory(tutorial)
43add_subdirectory(unittest-cpp)
Note: See TracBrowser for help on using the browser.