Revision 467, 1.4 kB
(checked in by vbarta, 16 years ago)
|
added a program (square_mat_prep) to generate configurably random matrices, changed square_mat_stress to use the generated agenda
|
-
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 | |
---|
[447] | 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) |
---|
[426] | 10 | target_link_libraries(testutil bdm itpp unittest) |
---|
[182] | 11 | |
---|
[426] | 12 | add_executable(square_mat_stress square_mat_stress.cpp) |
---|
| 13 | target_link_libraries(square_mat_stress bdm itpp testutil unittest) |
---|
| 14 | |
---|
[467] | 15 | 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) |
---|
| 16 | target_link_libraries(square_mat_prep bdm itpp testutil) |
---|
| 17 | |
---|
[394] | 18 | EXEC(emix_test) |
---|
[222] | 19 | EXEC(testResample) |
---|
[182] | 20 | |
---|
[222] | 21 | # ESTIM EXECS |
---|
| 22 | EXEC(arx_test) |
---|
| 23 | EXEC(arx_elem_test) |
---|
| 24 | EXEC(merger_test) |
---|
| 25 | EXEC(merger_2d_test) |
---|
| 26 | EXEC(merger_iter_test) |
---|
[394] | 27 | EXEC(mixtures_test) |
---|
[182] | 28 | |
---|
[386] | 29 | EXEC(test_kalman) |
---|
| 30 | EXEC(test_particle) |
---|
[222] | 31 | EXEC(testSmp) |
---|
[386] | 32 | EXEC(test_kalman_QR) |
---|
| 33 | EXEC(test_kalman_QRexh) |
---|
[82] | 34 | |
---|
[222] | 35 | EXEC(blas_test) |
---|
[125] | 36 | |
---|
[418] | 37 | # using UnitTest++ |
---|
[462] | 38 | add_executable(testsuite datalink_test.cpp egiw_test.cpp epdf_test.cpp loggers_test.cpp mpdf_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) |
---|
[426] | 39 | target_link_libraries(testsuite bdm itpp testutil unittest) |
---|
[418] | 40 | |
---|
[271] | 41 | add_subdirectory(tutorial) |
---|
[418] | 42 | add_subdirectory(unittest-cpp) |
---|