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 |
Brad King
|
0fe0523810
|
BUG: Fixed out-of-source subdirectories to work when they are also out-of-binary. Updated the OutOfSource test to test this feature.
|
2006-10-09 21:25:58 -04:00 |
Ken Martin
|
9a326a48e7
|
ENH: convert to work with the new syntax for ADD_SUBDIRECTORY
|
2005-09-12 14:26:45 -04:00 |
Ken Martin
|
2e4258efc1
|
ENH: shift to using ADD_SUBDIRECTORY
|
2005-06-08 12:26:32 -04:00 |
Ken Martin
|
179dc3c7ac
|
ENH: better test for subdirs
|
2005-03-29 15:33:46 -05:00 |
Ken Martin
|
345cf04012
|
ENH: big change that includes immediate subdir support, removing the notion of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings
|
2005-03-18 10:41:41 -05:00 |
Ken Martin
|
f7c024df2a
|
ENH: added new test for out of dir source trees
|
2005-03-14 11:26:32 -05:00 |