From: Michael Palimaka Date: Wed, 16 May 2012 17:42:36 +0000 (+1000) Subject: Add custom 'check' target that depends on the test_runner target for backwards compat... X-Git-Tag: v1.8beta~5^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5ad68d64be89db68069805925dc94f3cd403932;p=taglib Add custom 'check' target that depends on the test_runner target for backwards compatibility. --- diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 79d19429..2c2f0df5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -63,3 +63,5 @@ ADD_EXECUTABLE(test_runner ${test_runner_SRCS}) TARGET_LINK_LIBRARIES(test_runner tag ${CPPUNIT_LIBRARIES}) ADD_TEST(test_runner test_runner) +ADD_CUSTOM_TARGET(check COMMAND ${CMAKE_CTEST_COMMAND} -V + DEPENDS test_runner)