CMake/Tests/Complex/Library
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
..
ExtraSources ENH: try to get better test coverage 2001-08-23 13:57:45 -04:00
SystemDir BUG: Test -isystem without affecting other tests. Made separate Library/SystemDir for this purpose. 2006-10-05 12:04:30 -04:00
CMakeLists.txt Convert CMake-language commands to lower case 2012-08-13 14:19:16 -04:00
TestLink.c ENH: Added test for linking to a static library that is next to a shared library. See bug#1644 for related changes. 2006-09-15 14:31:24 -04:00
create_file.cxx Remove trailing whitespace from most CMake and C/C++ code 2012-08-13 14:18:39 -04:00
dummy ENH: fix tests 2002-03-29 15:02:18 -05:00
empty.h ENH: fix tests 2002-03-29 15:02:18 -05:00
file2.cxx ENH: Add test for REMOVE_DEFINITION 2004-04-15 13:59:29 -04:00
file2.h ENH: fix tests 2002-03-29 15:02:18 -05:00
notInAllLib.cxx ENH: Added NOT_IN_ALL option for ADD_LIBRARY and ADD_EXECUTABLE to avoid building the targets by default. 2006-10-02 11:14:00 -04:00
sharedFile.cxx ENH: try to get better test coverage 2001-08-23 13:57:45 -04:00
sharedFile.h c not c++ comment 2002-04-09 09:37:37 -04:00
testConly.c Remove trailing whitespace from most CMake and C/C++ code 2012-08-13 14:18:39 -04:00
testConly.h Remove trailing whitespace from most CMake and C/C++ code 2012-08-13 14:18:39 -04:00
test_preprocess.cmake Convert CMake-language commands to lower case 2012-08-13 14:19:16 -04:00