Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | BUG: Fixed out-of-source subdirectories to work when they are also ↵ | Brad King | 2006-10-10 | 1 | -0/+5 |
| | | | | out-of-binary. Updated the OutOfSource test to test this feature. | ||||
* | ENH: convert to work with the new syntax for ADD_SUBDIRECTORY | Ken Martin | 2005-09-12 | 1 | -2/+1 |
| | |||||
* | ENH: shift to using ADD_SUBDIRECTORY | Ken Martin | 2005-06-08 | 1 | -1/+2 |
| | |||||
* | ENH: better test for subdirs | Ken Martin | 2005-03-29 | 1 | -2/+2 |
| | |||||
* | ENH: big change that includes immediate subdir support, removing the notion ↵ | Ken Martin | 2005-03-18 | 1 | -1/+2 |
| | | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings | ||||
* | ENH: added new test for out of dir source trees | Ken Martin | 2005-03-14 | 1 | -0/+2 |