| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | style: Remove trailing blank lines from all CMake sources | Matthew Woehlke | 2024-11-21 | 1 | -1/+0 |
| | | | | | | | | Our development workflow tooling prevents trailing blank lines from being added, but some such lines remain from before that was enforced. Remove them to make it easier to rename files without triggering enforcement. | ||||
| * | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | 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: add SUBDIR PREORDER and fix clean for non-relative paths | Bill Hoffman | 2004-04-23 | 2 | -0/+5 |
