From 4de435dd540f642734c02c61a8f714d559eec667 Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 25 Jul 2015 17:29:43 +0200 Subject: [PATCH] CMakeLists.txt: Add COMMENTs to both check targets These are printed by CMake when starting these targets. Signed-off-by: Uli Schlachter --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 07dc15bc5..b79bf6028 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -326,11 +326,13 @@ if(BUSTED_EXECUTABLE) add_custom_target(check-unit ALL ${BUSTED_EXECUTABLE} "--lpath=${CMAKE_BINARY_DIR}/lib/?.lua;${CMAKE_BINARY_DIR}/lib/?/init.lua;spec/?.lua" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMENT "Running unit tests" VERBATIM) endif() add_custom_target(check-integration "${CMAKE_SOURCE_DIR}/tests/run.sh" WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + COMMENT "Running integration tests" VERBATIM) if(BUSTED_EXECUTABLE) add_custom_target(check DEPENDS check-integration check-unit)