| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix several include-what-you-use findings | Daniel Pfeifer | 2016-11-08 | 1 | -1/+0 |
|
|
* | Include necessary headers in commands | Daniel Pfeifer | 2016-10-26 | 1 | -1/+7 |
|
|
* | Merge topic 'remove-cmobject-uses' | Brad King | 2016-10-24 | 1 | -7/+2 |
|\ |
|
| * | Make cmCommand not inherit from cmObject | Daniel Pfeifer | 2016-10-22 | 1 | -7/+2 |
|
|
* | | Separate compilation for commands included in cmBootstrapCommands2 | Daniel Pfeifer | 2016-10-21 | 1 | -0/+2 |
|/ |
|
* | Simplify CMake per-source license notices | Brad King | 2016-09-27 | 1 | -11/+2 |
|
|
* | Avoid else after return | Daniel Pfeifer | 2016-09-16 | 1 | -3/+2 |
|
|
* | use empty method to check for emptyness | Daniel Pfeifer | 2016-09-15 | 1 | -1/+1 |
|
|
* | cmMakefile: Restore nested error logic use of cmExecutionStatus | Brad King | 2016-09-06 | 1 | -2/+2 |
|
|
* | cmMakefile: Port nested error logic away from cmExecutionStatus | Stephen Kelly | 2016-08-25 | 1 | -2/+2 |
|
|
* | mark functions with CM_OVERRIDE | Daniel Pfeifer | 2016-06-27 | 1 | -8/+9 |
|
|
* | Revise C++ coding style using clang-format | Kitware Robot | 2016-05-16 | 1 | -82/+54 |
|
|
* | Format include directive blocks and ordering with clang-format | Brad King | 2016-04-29 | 1 | -1/+1 |
|
|
* | Remove temporary allocations in cmMacroHelper::InvokeInitialPass. | Milian Wolff | 2016-01-20 | 1 | -9/+7 |
|
|
* | cmAlgorithms: Rename cmRange to cmMakeRange. | Stephen Kelly | 2015-07-22 | 1 | -1/+1 |
|
|
* | cmMakefile: Remove special handling of MACROS property. | Stephen Kelly | 2015-07-19 | 1 | -1/+1 |
|
|
* | cmListFile: Remove FilePath member from cmListFileContext. | Stephen Kelly | 2015-07-06 | 1 | -1/+0 |
|
|
* | cmState: Store execution context. | Stephen Kelly | 2015-07-05 | 1 | -0/+1 |
|
|
* | cmListFileArgument: Remove FilePath member. | Stephen Kelly | 2015-06-21 | 1 | -5/+0 |
|
|
* | cmMakefile: Add filename context to ExpandArguments. | Stephen Kelly | 2015-06-21 | 1 | -1/+2 |
|
|
* | cmMacroCommand: Store the FilePath when creating the prototype. | Stephen Kelly | 2015-06-21 | 1 | -4/+1 |
|
|
* | cmMakefile: Create a unified raii for macro scopes. | Stephen Kelly | 2015-06-04 | 1 | -8/+3 |
|
|
* | Port cmCommand consumers to cmState. | Stephen Kelly | 2015-04-15 | 1 | -3/+2 |
|
|
* | Include cmAlgorithms where it is used. | Stephen Kelly | 2015-03-10 | 1 | -0/+1 |
|
|
* | cmMakefile: Store macro list in a vector not in a map. | Stephen Kelly | 2015-02-21 | 1 | -9/+1 |
|
|
* | cmMacroCommand: Manipulate target string directly. | Stephen Kelly | 2015-02-11 | 1 | -14/+10 |
|
|
* | cmMacroCommand: Move computation of ARGV%n names out of double loop. | Stephen Kelly | 2015-02-11 | 1 | -4/+9 |
|
|
* | cmMacroCommand: Move ARGV replacement out of condition. | Stephen Kelly | 2015-02-11 | 1 | -2/+1 |
|
|
* | cmMacroCommand: Remove condition around ARGN replacement. | Stephen Kelly | 2015-02-11 | 1 | -5/+1 |
|
|
* | cmMacroCommand: Declare tmps in the scope that it's used. | Stephen Kelly | 2015-02-11 | 1 | -3/+1 |
|
|
* | cmMacroCommand: Declare arg in the scope that it is used. | Stephen Kelly | 2015-02-11 | 1 | -1/+2 |
|
|
* | cmMacroCommand: Inline variable computation. | Stephen Kelly | 2015-02-11 | 1 | -5/+1 |
|
|
* | cmMacroCommand: Compute variables outside of two loops. | Stephen Kelly | 2015-02-11 | 1 | -6/+12 |
|
|
* | cmMacroCommand: Remove intermediate arg variables. | Stephen Kelly | 2015-02-11 | 1 | -7/+2 |
|
|
* | cmMacroCommand: Remove condition around ARGN computation. | Stephen Kelly | 2015-02-11 | 1 | -4/+1 |
|
|
* | cmMacroCommand: Remove conditional append of semicolon. | Stephen Kelly | 2015-02-11 | 1 | -8/+0 |
|
|
* | cmMacroCommand: Declare arg variables where used and initialized. | Stephen Kelly | 2015-02-11 | 1 | -21/+9 |
|
|
* | cmMacroCommand: Join the args strings outside of the loops. | Stephen Kelly | 2015-02-11 | 1 | -4/+6 |
|
|
* | Convert loops to cmJoin algorithm with cmRange. | Stephen Kelly | 2015-02-11 | 1 | -6/+1 |
|
|
* | Replace common loop pattern with cmJoin | Stephen Kelly | 2015-02-11 | 1 | -8/+1 |
|
|
* | Convert loops populating maybe-empty content into the common pattern. | Stephen Kelly | 2015-02-11 | 1 | -9/+14 |
|
|
* | cmMacroCommand: Remove counting variable. | Stephen Kelly | 2015-02-11 | 1 | -9/+4 |
|
|
* | cmMacroCommand: Execute loop only if it has an effect. | Stephen Kelly | 2015-02-11 | 1 | -9/+12 |
|
|
* | cmMacroCommand: Extract iteration starting point. | Stephen Kelly | 2015-02-11 | 1 | -2/+3 |
|
|
* | cmMacroCommand: Replace a loop with cmJoin. | Stephen Kelly | 2015-02-11 | 1 | -3/+3 |
|
|
* | Replace foo.size() pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 1 | -1/+1 |
|
|
* | Replace 'foo.size() > 0' pattern with !foo.empty(). | Stephen Kelly | 2015-01-18 | 1 | -2/+2 |
|
|
* | Merge topic 'drop-ancient-workarounds' | Brad King | 2015-01-12 | 1 | -1/+1 |
|\ |
|
| * | Port all cmOStringStream to std::ostringstream. | Stephen Kelly | 2015-01-11 | 1 | -1/+1 |
|
|
* | | Use insert instead of a loop in some cases. | Stephen Kelly | 2015-01-11 | 1 | -5/+1 |
|/ |
|