Kitware Robot
|
77543bde41
|
Convert CMake-language commands to lower case
Ancient CMake versions required upper-case commands. Later command
names became case-insensitive. Now the preferred style is lower-case.
Run the following shell code:
cmake --help-command-list |
grep -v "cmake version" |
while read c; do
echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g'
done >convert.sed &&
git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
xargs -0 sed -i -f convert.sed &&
rm convert.sed
|
2012-08-13 14:19:16 -04:00 |
|
Kitware Robot
|
7bbaa4283d
|
Remove trailing whitespace from most CMake and C/C++ code
Our Git commit hooks disallow modification or addition of lines with
trailing whitespace. Wipe out all remnants of trailing whitespace
everywhere except third-party code.
Run the following shell code:
git ls-files -z -- \
bootstrap doxygen.config '*.readme' \
'*.c' '*.cmake' '*.cpp' '*.cxx' \
'*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \
'*.mm' '*.pike' '*.py' '*.txt' '*.vim' |
egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' |
egrep -z -v '^(Modules/CPack\..*\.in)' |
xargs -0 sed -i 's/ \+$//'
|
2012-08-13 14:18:39 -04:00 |
|
Ken Martin
|
57a0f830df
|
ENH: fix spelling mistake
|
2009-06-23 12:58:19 -04:00 |
|
Alexander Neundorf
|
e20f1dd26c
|
ENH: use a common CPACK_BINARY_ prefix for the binary package generators
Alex
|
2008-04-17 17:23:21 -04:00 |
|
Ken Martin
|
ce8810c4e7
|
ENH: preclean some warnings
|
2008-03-25 11:27:18 -04:00 |
|
Ken Martin
|
ec2839c57d
|
STYLE: change case to match book
|
2008-01-17 10:26:49 -05:00 |
|
Ken Martin
|
58f0cad472
|
ENH: switch to new install commands to match book text
|
2007-11-13 11:11:03 -05:00 |
|
David Cole
|
4e752dee91
|
ENH: Add new Tutorial steps. Diff between Step5 and Step6 shows how to add a cpack driven installer to your project. Diff between Step6 and Step7 shows how to add ctest dashboard scripting capability.
|
2007-11-08 10:38:26 -05:00 |
|