Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | ENH: shift to using ADD_SUBDIRECTORY | Ken Martin | 2005-06-08 | 1 | -1/+2 |
| | |||||
* | ENH: Improved test to have a different relative path name for libraries ↵ | Brad King | 2004-01-22 | 1 | -19/+1 |
| | | | | between the Executable and Library directories. | ||||
* | ERR: Fixed post-build rule to copy shared library correctly. | Brad King | 2004-01-22 | 1 | -6/+4 |
| | |||||
* | ENH: Adding test for jumping over and building a missing library. | Brad King | 2004-01-22 | 1 | -0/+21 |