Revision 448, 1.3 kB
(checked in by vbarta, 15 years ago)
|
mepdf configurable tests
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | # Make sure the compiler can find include files from our Bdm library. |
---|
2 | include_directories (${BDM_SOURCE_DIR}/bdm) |
---|
3 | include_directories (./unittest-cpp) |
---|
4 | |
---|
5 | # Make sure the linker can find the Hello library once it is built. |
---|
6 | link_directories (${BDM_BINARY_DIR}/bdm) |
---|
7 | link_directories (./unittest-cpp) |
---|
8 | |
---|
9 | add_library(testutil egiw_harness.cpp egiw_harness.h epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h mpdf_harness.cpp mpdf_harness.h test_util.cpp test_util.h) |
---|
10 | target_link_libraries(testutil bdm itpp unittest) |
---|
11 | |
---|
12 | EXEC(chmat_test) |
---|
13 | EXEC(ldmat_test) |
---|
14 | |
---|
15 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
16 | target_link_libraries(square_mat_stress bdm itpp testutil unittest) |
---|
17 | |
---|
18 | EXEC(fsqmat_test) |
---|
19 | EXEC(emix_test) |
---|
20 | EXEC(test0) |
---|
21 | EXEC(testResample) |
---|
22 | |
---|
23 | # ESTIM EXECS |
---|
24 | EXEC(arx_test) |
---|
25 | EXEC(arx_elem_test) |
---|
26 | EXEC(merger_test) |
---|
27 | EXEC(merger_2d_test) |
---|
28 | EXEC(merger_iter_test) |
---|
29 | EXEC(mixtures_test) |
---|
30 | |
---|
31 | EXEC(test_kalman) |
---|
32 | EXEC(test_particle) |
---|
33 | EXEC(testSmp) |
---|
34 | EXEC(test_kalman_QR) |
---|
35 | EXEC(test_kalman_QRexh) |
---|
36 | |
---|
37 | EXEC(blas_test) |
---|
38 | |
---|
39 | # using UnitTest++ |
---|
40 | add_executable(testsuite datalink_test.cpp egamma_test.cpp egiw_test.cpp enorm_test.cpp loggers_test.cpp mepdf_test.cpp mgamma_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) |
---|
41 | target_link_libraries(testsuite bdm itpp testutil unittest) |
---|
42 | |
---|
43 | add_subdirectory(tutorial) |
---|
44 | add_subdirectory(unittest-cpp) |
---|