From aede57f895bbe4ba49bd711e2338f27a8ead7961 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 9 Mar 2016 19:31:14 -0600 Subject: [PATCH] Let the 'indent' custom target print a better message. The existing message displays the command that is being executed. Instead say what it *does*. --- cmake/setup_custom_targets.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/setup_custom_targets.cmake b/cmake/setup_custom_targets.cmake index 3ae699a6ea..41f8ed38e1 100644 --- a/cmake/setup_custom_targets.cmake +++ b/cmake/setup_custom_targets.cmake @@ -1,6 +1,6 @@ ## --------------------------------------------------------------------- ## -## Copyright (C) 2013 - 2015 by the deal.II authors +## Copyright (C) 2013 - 2016 by the deal.II authors ## ## This file is part of the deal.II library. ## @@ -96,6 +96,7 @@ ENDIF() ADD_CUSTOM_TARGET(indent WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ./contrib/utilities/indent + COMMENT "Indenting all files in the deal.II directories" ) -- 2.39.5