2022-03-30 09:28:07 +03:00
|
|
|
find_package(Catch2 REQUIRED)
|
2022-03-30 13:27:20 +03:00
|
|
|
add_executable(catchtest all_includes.C t_vswf.C catch_aux.C)
|
|
|
|
# TODO ensure that the tests are linked against the "working tree" version of qpms,
|
|
|
|
# not the installed one
|
|
|
|
target_link_libraries(catchtest PRIVATE Catch2::Catch2WithMain qpms lapacke)
|
2022-03-30 09:28:07 +03:00
|
|
|
|
|
|
|
|