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 | ||||
* | Drop -rdynamic from Linux build rules | Brad King | 2009-12-01 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | This is a GNU-specific option that should not be specified for all compilers on Linux. It tells the GNU compiler to pass -export-dynamic to the linker to export symbols from executables for use by plugins. Since we provide the ENABLE_EXPORTS target property to do the same thing in a cross-platform way, there is no need to pass -rdynamic always. Since the option is not useful for GNU tools and breaks other tools on Linux we simply remove it from CMAKE_SHARED_LIBRARY_LINK_<lang>_FLAGS. This also allows us to stop setting the variable in other Linux compiler files just to erase the bad flag. See issue #9985. | ||||
* | ENH: major changes to support addition of languages from cmake modules ↵ | Bill Hoffman | 2004-09-22 | 1 | -2/+2 |
| | | | | directory. | ||||
* | ENH: Added shared library settings. | Brad King | 2003-01-06 | 1 | -0/+2 |
| | |||||
* | ENH: Added <LINK_FLAGS> to link rules. | Brad King | 2002-12-31 | 1 | -2/+2 |
| | |||||
* | correctly place both LINK_FLAGS and CXX_LINK_FLAGS and C_LINK_FLAGS into all ↵ | Bill Hoffman | 2002-12-03 | 1 | -1/+1 |
| | | | | the rules | ||||
* | ENH: Adding support for comeau C++ compiler. | Brad King | 2002-11-08 | 1 | -0/+16 |