Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Convert CMake-language commands to lower case | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | 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 platform variables for position independent code flags | Stephen Kelly | 2012-06-12 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | Store in new platform variables CMAKE_${lang}_COMPILE_OPTIONS_PIC CMAKE_${lang}_COMPILE_OPTIONS_PIE flags for position independent code generation. In almost all cases, this means duplication of the CMAKE_SHARED_LIBRARY_${lang}_FLAGS for the _PIC case and using the assumed pie equivalent for the _PIE case. Note that the GNU compiler has supported -fPIE since 3.4 and that there is no -fPIC on GNU for Windows or Cygwin. There is a possibility that the _PIE variables are not correct. However, as there is no backwards compatibility to be concerned about (as the POSITION_INDEPENDENT_CODE property is not used anywhere yet), the current state suffices. | ||||
* | ENH: add more search paths and add UnixPaths to all unix platforms | Bill Hoffman | 2006-03-27 | 1 | -0/+1 |
| | |||||
* | ENH: more uniform approach to enable language, one step closer to being able ↵ | Bill Hoffman | 2004-08-26 | 1 | -2/+0 |
| | | | | to enable a language without modifing cmake source code | ||||
* | BUG: fix for bug 383 gcc flags are now always set if the compiler is gnu | Bill Hoffman | 2003-11-14 | 1 | -0/+2 |
| | |||||
* | Complete rework of makefile generators expect trouble | Bill Hoffman | 2002-11-08 | 1 | -0/+2 |