What is the approach to create a new target for Ctest?
By default, the target 'test' is created and CTest can be run from
make test
Let say that this command line runs some tests defined like this:
ADD_TEST(my_test1 my_exe1 my_arg1)
ADD_TEST(my_test2 my_exe2 my_arg2)
Is it possible to create a new target 'check' such as
make check
runs my_test1 with CTest and
make test
runs my_test2 with CTest?