CMake/Tests/Tutorial/Step7
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
..
MathFunctions Remove trailing whitespace from most CMake and C/C++ code 2012-08-13 14:18:39 -04:00
CMakeLists.txt Remove trailing whitespace from most CMake and C/C++ code 2012-08-13 14:18:39 -04:00
CTestConfig.cmake STYLE: change case to match book 2008-01-17 10:26:49 -05:00
License.txt 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
TutorialConfig.h.in 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
build1.cmake Convert CMake-language commands to lower case 2012-08-13 14:19:16 -04:00
build2.cmake Convert CMake-language commands to lower case 2012-08-13 14:19:16 -04:00
tutorial.cxx 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