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 |
Alex Neundorf
|
1ab4b3e123
|
guard eCos.cmake against multiple inclusion (#12987)
Alex
|
2012-03-20 22:13:47 +01:00 |
Brad King
|
f0cee3fe4c
|
ENH: Fix eCos.cmake to not require a forced compiler
- Search for libtarget.a explicitly
- Do not complain about compiler id during try-compile
|
2008-02-11 17:01:02 -05:00 |
Brad King
|
b8357db11d
|
ENH: Rename SET_PROPERITES command to SET_PROPERTY and give it a more powerful signature.
|
2008-01-17 15:54:49 -05:00 |
Alexander Neundorf
|
1f7e8e6f0b
|
ENH: add the ecos include dir and the ecos definitions by default
Alex
|
2007-07-10 17:11:57 -04:00 |
Alexander Neundorf
|
3974ddc69e
|
ENH: add support for building eCos applications natively
Alex
|
2007-07-09 13:07:23 -04:00 |