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 |
Brad King
|
b21cb9ff74
|
Tests/ObjC++: Use standard <iostream> header
Drop use of non-standard <iostream.h> header.
|
2012-07-18 10:03:59 -04:00 |
Ken Martin
|
2208231aac
|
ENH: some more CMakeList cleanups
|
2007-05-11 10:22:20 -04:00 |
Andy Cedilnik
|
f778ae3fed
|
Add missing library. The test should be linked to framework Cocoa
|
2002-11-27 07:42:23 -05:00 |
Yves Starreveld
|
ad01416a11
|
Test for ObjC++ on OSX machines only
|
2002-11-26 19:01:51 -05:00 |