Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | OS X: Split Intel compiler information files | Brad King | 2014-02-11 | 1 | -3/+0 |
| | | | | | | | | Create platform information modules Platform/Darwin-Intel-(C|CXX).cmake and helper module Platform/Darwin-Intel.cmake. Teach existing module Platform/Darwin-Intel-Fortran.cmake to use the helper too. Move information from Platform/Darwin-icc.cmake into these files and drop information already in Platform/Darwin.cmake to avoid duplication. | ||||
* | 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 | ||||
* | ENH: Add Intel compiler module files for the Mac. Thanks to Mike Jackson for ↵ | David Cole | 2008-03-31 | 1 | -0/+3 |
contributing. |