Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmPropertyMap: Rename GetPropertyList method to GetKeys | Sebastian Holtermann | 2019-06-08 | 1 | -7/+1 |
| | |||||
* | Use cmAppend to append ranges to std::vector instances | Sebastian Holtermann | 2019-05-23 | 1 | -3/+1 |
| | |||||
* | cmRange: Move to dedicated header file | Regina Pfeifer | 2019-02-21 | 1 | -0/+1 |
| | |||||
* | Modernize: Use ranged for-loops when possible | Artur Ryt | 2019-02-07 | 1 | -6/+5 |
| | | | | | | | Replaced most manual `const_iterator`-based loops and some reverse-iterator loops with range loops. Fixes: #18858 | ||||
* | cmOutputConverter: move ConvertToRelativePath to cmStateDirectory. | Bruno Manganelli | 2019-01-27 | 1 | -0/+9 |
| | |||||
* | cmOutputConverter: Moved ContainedInDirectory to cmStateDirectory | Bruno Manganelli | 2018-12-08 | 1 | -0/+17 |
| | |||||
* | link_directories(): enhance capabilities | Marc Chevrier | 2018-09-25 | 1 | -0/+27 |
| | |||||
* | LINK_DIRECTORIES: Add new properties and commands | Marc Chevrier | 2018-09-25 | 1 | -0/+53 |
| | | | | | | | | | | | | These new capabilities enable to manage link directories Two new properties: * target properties: LINK_DIRECTORIES and INTERFACE_LINK_DIRECTORIES One new command * target_link_directories(): to populate target properties Fixes: #17215 | ||||
* | cmStateDirectory: use const std::string& for return values | Vitaly Stakhovsky | 2018-08-12 | 1 | -9/+9 |
| | |||||
* | LINK_OPTIONS: Add new family of properties | Marc Chevrier | 2018-06-06 | 1 | -0/+52 |
| | | | | | | | | | | | | | | This family enable to manage link flags Three new properties: * directory property: LINK_OPTIONS * target properties: LINK_OPTIONS and INTERFACE_LINK_OPTIONS Two new commands * add_link_options(): to populate directory property * target_link_options(): to populate target properties Fixes: #16543 | ||||
* | Improve several occurrences of vector::push_back in loops | Matthias Maennich | 2017-09-28 | 1 | -0/+1 |
| | | | | | | | Fix issues diagnosed by clang-tidy by pre-allocating the vector capacity before the loop [performance-inefficient-vector-operation]. Signed-off-by: Matthias Maennich <matthias@maennich.net> | ||||
* | Meta: replace empty-string assignments with `clear()`. | Pavel Solodovnikov | 2017-09-15 | 1 | -2/+2 |
| | |||||
* | Meta: modernize old-fashioned loops to range-based `for`. | Pavel Solodovnikov | 2017-09-12 | 1 | -8/+4 |
| | | | | | | Changes done via `clang-tidy` with some manual fine-tuning for the variable naming and `auto` type deduction where appropriate. | ||||
* | Fix several include-what-you-use findings | Daniel Pfeifer | 2016-11-08 | 1 | -0/+10 |
| | |||||
* | cmState: Split auxiliary classes into separate files | Stephen Kelly | 2016-10-19 | 1 | -0/+518 |
Port dependents to the new locations as needed. Leave behind a cmState.h include in cmListFileCache to reduce noise. It is removed in a following commit. |