Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CMakeRCCompiler: Handle uppercase 'RC' as resource file format extension | Tim Blechmann | 2014-06-06 | 1 | -1/+1 |
| | | | | | | | We already match lowercase 'rc'. Add 'RC' too. The latter is listed in other CMake<LANG>Compiler modules as ignored for their languages already. Signed-off-by: Tim Blechmann <tim@klingt.org> | ||||
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Add support for windows resources with mingw/msys. | Bill Hoffman | 2010-12-23 | 1 | -1/+1 |
| | |||||
* | ENH: make sure flags set in CC or CXX environment variables stay with the ↵ | Bill Hoffman | 2005-07-20 | 1 | -0/+1 |
| | | | | compiler | ||||
* | ENH: stuff to keep compiler tests from re-running all the time | Bill Hoffman | 2005-01-20 | 1 | -0/+1 |
| | |||||
* | ENH: major changes to support addition of languages from cmake modules ↵ | Bill Hoffman | 2004-09-22 | 1 | -0/+4 |
directory. |