Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Remove unused code from CTest test suite | Brad King | 2009-12-02 | 1 | -7/+1 |
| | | | | | We remove from Tests/CTestTest*/CMakeLists.txt some historical cruft that is no longer used by the test suite. | ||||
* | Change logic of ctest subdirs command to allow for absolute paths. Also ↵ | Zach Mullen | 2009-11-10 | 1 | -0/+2 |
| | | | | added test coverage for passing absolute paths to subdirs. | ||||
* | Added a ctest add_subdirectory test which fails before my patch made earlier ↵ | Zach Mullen | 2009-10-20 | 1 | -0/+11 |
today. |