|
find_package(Catch2 REQUIRED)
|
|
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)
|
|
|
|
|