Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | strings: Remove cmStdString references | Ben Boeckel | 2014-03-08 | 1 | -1/+1 |
| | | | | | | | | | | | Casts from std::string -> cmStdString were high on the list of things taking up time. Avoid such implicit casts across function calls by just using std::string everywhere. The comment that the symbol name is too long is no longer relevant since modern debuggers alias the templates anyways and the size is a non-issue since the underlying methods are generated since it's inherited. | ||||
* | stringapi: Use strings for source names | Ben Boeckel | 2014-03-08 | 1 | -1/+1 |
| | |||||
* | cmSourceGroup: Fix method name capitalization. | Stephen Kelly | 2014-01-22 | 1 | -1/+1 |
| | | | | Adhere to the dominant style. | ||||
* | cmMakefile: Constify some cmSourceGroup related code. | Stephen Kelly | 2014-01-22 | 1 | -4/+4 |
| | |||||
* | CMake: source_group needs to check its own regex after its children (#13611) | Clemens Heppner | 2012-11-23 | 1 | -4/+5 |
| | | | | Otherwise, regexes that descend into sub-folders do not get grouped correctly. | ||||
* | Remove trailing whitespace from most CMake and C/C++ code | Kitware Robot | 2012-08-13 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//' | ||||
* | Remove unused cmSourceGroup method | Brad King | 2012-03-09 | 1 | -6/+0 |
| | | | | The non-const GetSourceFiles method is not needed. | ||||
* | Convert CMake to OSI-approved BSD License | Brad King | 2009-09-28 | 1 | -14/+9 |
| | | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range. | ||||
* | ENH: add group support and fix borland error | Bill Hoffman | 2009-07-11 | 1 | -1/+15 |
| | |||||
* | COMP: Fix build with concept checking of STL. | Brad King | 2008-05-16 | 1 | -9/+50 |
| | | | | - Fix cmSourceGroup to not use std::vector with an incomplete type. | ||||
* | BUG: fix #4057 (which had several duplicates): handle recursivew source ↵ | Alexander Neundorf | 2007-08-24 | 1 | -8/+0 |
| | | | | | | groups better, i.e. multiple sourcegroups with the same end component work now Alex | ||||
* | STYLE: some m_ to this-> cleanup | Ken Martin | 2006-03-15 | 1 | -19/+19 |
| | |||||
* | FIX: apply patch from bug# 1965 | Bill Hoffman | 2005-07-13 | 1 | -0/+85 |
| | |||||
* | ENH: Fully implemented SOURCE_GROUP command. | Brad King | 2003-07-23 | 1 | -25/+51 |
| | |||||
* | warning fixes | Ken Martin | 2003-06-03 | 1 | -1/+1 |
| | |||||
* | yikes added new custom command support | Ken Martin | 2003-06-03 | 1 | -96/+2 |
| | |||||
* | Add comment support, so that you can see in build process what the custom ↵ | Andy Cedilnik | 2002-12-10 | 1 | -0/+2 |
| | | | | command does | ||||
* | ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵ | Brad King | 2002-10-23 | 1 | -5/+5 |
| | | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs. | ||||
* | ENH: remove several compiler warnings | Bill Hoffman | 2002-03-13 | 1 | -2/+4 |
| | |||||
* | ENH: add file specific compile flags | Bill Hoffman | 2002-03-04 | 1 | -6/+9 |
| | |||||
* | ENH:Updated copyright | Will Schroeder | 2002-01-21 | 1 | -30/+6 |
| | |||||
* | ENH: separate command from its arguments in the custom command. This allows ↵ | Bill Hoffman | 2001-09-04 | 1 | -10/+20 |
| | | | | the generator on windows to change the slashes for just the command | ||||
* | ENH: move testing stuff to cmake from configure, good bye dashboard... :) | Bill Hoffman | 2001-05-04 | 1 | -0/+19 |
| | |||||
* | better custom rules | Ken Martin | 2001-05-04 | 1 | -0/+16 |
| | |||||
* | BUG: Removed output of dual rules for source files that are processed by ↵ | Brad King | 2001-04-27 | 1 | -6/+20 |
| | | | | both the compiler and by a custom command. Also removed generation of duplicate CMakeLists.txt in the project files. | ||||
* | ENH:New copyright | Will Schroeder | 2001-04-27 | 1 | -3/+28 |
| | |||||
* | cleaned up the coding style made ivars private etc | Ken Martin | 2001-04-19 | 1 | -10/+10 |
| | |||||
* | major changes to support multiple libraries and source lists | Ken Martin | 2001-04-11 | 1 | -14/+11 |
| | |||||
* | ENH: Added SOURCE_GROUP command and corresponding support code. This ↵ | Brad King | 2001-03-20 | 1 | -0/+87 |
command allows CMakeLists files to specify how sources are organized into groups in the generated DSP files and makefiles. |