Revision 500, 1.6 kB
(checked in by vbarta, 15 years ago)
|
moved emix_test to testsuite
|
-
Property svn:eol-style set to
native
|
Rev | Line | |
---|
[20] | 1 | # Make sure the compiler can find include files from our Bdm library. |
---|
[19] | 2 | include_directories (${BDM_SOURCE_DIR}/bdm) |
---|
[418] | 3 | include_directories (./unittest-cpp) |
---|
[19] | 4 | |
---|
| 5 | # Make sure the linker can find the Hello library once it is built. |
---|
| 6 | link_directories (${BDM_BINARY_DIR}/bdm) |
---|
[418] | 7 | link_directories (./unittest-cpp) |
---|
[19] | 8 | |
---|
[469] | 9 | SET(testutil_src egiw_harness.cpp egiw_harness.h epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h mpdf_harness.cpp mpdf_harness.h square_mat_point.cpp square_mat_point.h test_util.cpp test_util.h) |
---|
| 10 | |
---|
| 11 | add_library(testutil ${testutil_src}) |
---|
[426] | 12 | target_link_libraries(testutil bdm itpp unittest) |
---|
[182] | 13 | |
---|
[426] | 14 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
[469] | 15 | target_link_libraries(square_mat_stress testutil unittest) |
---|
| 16 | LINK_EXEC(square_mat_stress) |
---|
[426] | 17 | |
---|
[467] | 18 | add_executable(square_mat_prep additive_generator.cpp additive_generator.h generator.cpp generator.h size_generator.cpp size_generator.h square_mat_prep.cpp) |
---|
[469] | 19 | target_link_libraries(square_mat_prep testutil) |
---|
| 20 | LINK_EXEC(square_mat_prep) |
---|
[467] | 21 | |
---|
[222] | 22 | EXEC(testResample) |
---|
[182] | 23 | |
---|
[222] | 24 | # ESTIM EXECS |
---|
| 25 | EXEC(arx_test) |
---|
| 26 | EXEC(arx_elem_test) |
---|
| 27 | EXEC(merger_test) |
---|
| 28 | EXEC(merger_2d_test) |
---|
| 29 | EXEC(merger_iter_test) |
---|
[394] | 30 | EXEC(mixtures_test) |
---|
[182] | 31 | |
---|
[386] | 32 | EXEC(test_kalman) |
---|
| 33 | EXEC(test_particle) |
---|
[222] | 34 | EXEC(testSmp) |
---|
[386] | 35 | EXEC(test_kalman_QR) |
---|
| 36 | EXEC(test_kalman_QRexh) |
---|
[82] | 37 | |
---|
[222] | 38 | EXEC(blas_test) |
---|
[125] | 39 | |
---|
[418] | 40 | # using UnitTest++ |
---|
[500] | 41 | add_executable(testsuite datalink_test.cpp egiw_test.cpp emix_test.cpp epdf_test.cpp loggers_test.cpp mpdf_test.cpp rv_test.cpp shared_ptr_test.cpp square_mat_test.cpp testsuite.cpp user_info_test.cpp) |
---|
[469] | 42 | target_link_libraries(testsuite testutil unittest) |
---|
| 43 | LINK_EXEC(testsuite) |
---|
[418] | 44 | |
---|
[271] | 45 | add_subdirectory(tutorial) |
---|
[418] | 46 | add_subdirectory(unittest-cpp) |
---|