Add missing build step
All checks were successful
buildbot/mdml-cgi-linux-builder Build done.
buildbot/mdml-cgi-freebsd-builder Build done.
buildbot/mdml-cgi-macos-builder Build done.

This commit is contained in:
S David 2024-04-19 20:18:09 -04:00
parent e0d46c18a8
commit c0bf52822e

View File

@ -23,6 +23,11 @@ PRIVATE
Catch2::Catch2WithMain
)
add_custom_target(test_bin)
add_dependencies(test_bin
test-runner
)
# Extras: Catch2 Ctest integration. @{
# add catch2's ctest CMake module and register the tests defined by test-runner
# using catch_discover_tests
@ -42,7 +47,7 @@ add_custom_target(ctest
)
add_dependencies(ctest
test-runner
test_bin
copy_test-data
)
# vim: ft=cmake sw=4 ts=4 noet sts=4 foldmethod=marker foldmarker=@{,@} :