Revision 717, 0.7 kB
(checked in by mido, 15 years ago)
|
clean up of the whole tests directory has just started
|
-
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 | |
---|
[629] | 9 | SET(testutil_src epdf_harness.cpp epdf_harness.h mat_checks.cpp mat_checks.h |
---|
[693] | 10 | pdf_harness.cpp pdf_harness.h square_mat_point.cpp square_mat_point.h test_util.cpp test_util.h) |
---|
[469] | 11 | |
---|
| 12 | add_library(testutil ${testutil_src}) |
---|
[426] | 13 | target_link_libraries(testutil bdm itpp unittest) |
---|
[182] | 14 | |
---|
[271] | 15 | add_subdirectory(tutorial) |
---|
[418] | 16 | add_subdirectory(unittest-cpp) |
---|
[717] | 17 | add_subdirectory(testsuite) |
---|
| 18 | add_subdirectory(stresssuite) |
---|