From: Wolfgang Bangerth Date: Thu, 10 Mar 2016 01:31:14 +0000 (-0600) Subject: Let the 'indent' custom target print a better message. X-Git-Tag: v8.5.0-rc1~1230^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aede57f895bbe4ba49bd711e2338f27a8ead7961;p=dealii.git Let the 'indent' custom target print a better message. The existing message displays the command that is being executed. Instead say what it *does*. --- 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" )