2024-10-24 14:48:55 +00:00
|
|
|
find_package(Catch2 3 REQUIRED)
|
|
|
|
|
2024-10-27 13:17:16 +00:00
|
|
|
add_executable(filetape_tests filetape_tests.cpp)
|
2024-10-24 01:25:45 +00:00
|
|
|
target_link_libraries(filetape_tests PRIVATE tapelib)
|
2024-10-24 14:48:55 +00:00
|
|
|
target_link_libraries(filetape_tests PRIVATE Catch2::Catch2WithMain)
|
2024-10-24 01:25:45 +00:00
|
|
|
|
|
|
|
add_test(filetape_tests filetape_tests)
|
2024-10-27 03:18:23 +00:00
|
|
|
|
2024-10-27 13:17:16 +00:00
|
|
|
add_executable(filetape_sort_tests filetape_sort_tests.cpp)
|
2024-10-27 03:18:23 +00:00
|
|
|
target_link_libraries(filetape_sort_tests PRIVATE tapelib)
|
|
|
|
target_link_libraries(filetape_sort_tests PRIVATE Catch2::Catch2WithMain)
|
|
|
|
|
|
|
|
add_test(filetape_sort_tests filetape_sort_tests)
|