added "make check" command to run tests

This commit is contained in:
Pavel Kartavyy 2014-01-16 12:39:28 +00:00
parent fd05f7ea53
commit a576d7cbf6

10
add.test.cmake Normal file
View File

@ -0,0 +1,10 @@
# добавляем вывод программы при ошибке теста
enable_testing()
if (CMAKE_CONFIGURATION_TYPES)
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}
--force-new-ctest-process --output-on-failure
--build-config "$<CONFIGURATION>")
else()
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}
--force-new-ctest-process --output-on-failure)
endif()