root/library/tests/CMakeLists.txt @ 422

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

RV partial cleanup: more arguments passed by reference, less inline functions, tests integrated into the testsuite

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