Changeset 426 for library/tests
- Timestamp:
- 07/23/09 16:57:21 (15 years ago)
- Location:
- library/tests
- Files:
-
- 4 added
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/tests/CMakeLists.txt
r425 r426 7 7 link_directories (./unittest-cpp) 8 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. 9 add_library(testutil mat_checks.cpp mat_checks.h test_util.cpp test_util.h) 10 target_link_libraries(testutil bdm itpp unittest) 11 11 12 12 EXEC(chmat_test) 13 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 14 18 EXEC(fsqmat_test) 15 19 EXEC(enorm_test) … … 37 41 38 42 # using UnitTest++ 39 add_executable(testsuite datalink_test.cpp loggers_test.cpp rv_test.cpp testsuite.cpp test_user_info.cpp test_util.cpp test_util.htest_shared_ptr.cpp)40 target_link_libraries(testsuite bdm itpp unittest)43 add_executable(testsuite datalink_test.cpp loggers_test.cpp rv_test.cpp square_mat_test.cpp testsuite.cpp test_user_info.cpp test_shared_ptr.cpp) 44 target_link_libraries(testsuite bdm itpp testutil unittest) 41 45 42 46 add_subdirectory(tutorial)