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
RevLine 
[20]1# Make sure the compiler can find include files from our Bdm library.
[19]2include_directories (${BDM_SOURCE_DIR}/bdm)
[418]3include_directories (./unittest-cpp)
[19]4
5# Make sure the linker can find the Hello library once it is built.
6link_directories (${BDM_BINARY_DIR}/bdm)
[418]7link_directories (./unittest-cpp)
[19]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.
[182]11
[222]12EXEC(chmat_test)
13EXEC(ldmat_test)
14EXEC(fsqmat_test)
15EXEC(enorm_test)
16EXEC(egiw_test)
[394]17EXEC(emix_test)
[222]18EXEC(test0)
19EXEC(testResample)
[182]20
[222]21# ESTIM EXECS
22EXEC(arx_test)
23EXEC(arx_elem_test)
24EXEC(merger_test)
25EXEC(merger_2d_test)
26EXEC(merger_iter_test)
[394]27EXEC(mixtures_test)
[182]28
[386]29EXEC(test_kalman)
30EXEC(test_particle)
[222]31EXEC(testSmp)
32EXEC(testEpdf)
[386]33EXEC(test_kalman_QR)
34EXEC(test_kalman_QRexh)
[82]35
[222]36EXEC(blas_test)
[125]37
[418]38# using UnitTest++
[425]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)
[418]40target_link_libraries(testsuite bdm itpp unittest)
41
[271]42add_subdirectory(tutorial)
[418]43add_subdirectory(unittest-cpp)
Note: See TracBrowser for help on using the browser.