Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmList class: various enhancements | Marc Chevrier | 2023-04-29 | 1 | -6/+6 |
| | |||||
* | CMake code rely on cmList class for CMake lists management (part. 1) | Marc Chevrier | 2023-04-24 | 1 | -8/+7 |
| | |||||
* | Source: Simplify some boolean expressions | Rose | 2021-10-23 | 1 | -5/+4 |
| | |||||
* | Rename cmProp in cmValue | Marc Chevrier | 2021-09-21 | 1 | -1/+1 |
| | |||||
* | cmSystemTools::VersionCompare: use std::string for arguments | Marc Chevrier | 2021-09-17 | 1 | -5/+3 |
| | |||||
* | cmCPackGenerator::GetOption returns cmProp | Marc Chevrier | 2021-09-13 | 1 | -1/+1 |
| | |||||
* | clang-tidy: fix `readability-make-member-function-const` warnings | Ben Boeckel | 2021-01-27 | 1 | -4/+4 |
| | |||||
* | IWYU: mark <cstddef> as needed | Ben Boeckel | 2020-04-29 | 1 | -1/+1 |
| | | | | Newer IWYU is not seeing them as needed for `size_t`. | ||||
* | Revise include order using clang-format-6.0 | Kitware Robot | 2019-10-01 | 1 | -5/+5 |
| | | | | | Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0. | ||||
* | IWYU: Add missing cstddef includes for size_t and nullptr_t | Brad King | 2019-09-03 | 1 | -0/+1 |
| | | | | The IWYU tool we use for CI now diagnoses these. | ||||
* | Source sweep: Replace cmExpandList with the shorter cmExpandedList | Sebastian Holtermann | 2019-08-23 | 1 | -4/+2 |
| | | | | | | | | | | | | This replaces the code pattern ``` std::vector<std::string> args; cmExpandList(valueStr, args, ...) ``` with ``` std::vector<std::string> args = cmExpandedList(valueStr, ...) ``` | ||||
* | Source code: Use cmExpandList instead of cmSystemTools::ExpandListArgument | Sebastian Holtermann | 2019-08-14 | 1 | -2/+3 |
| | |||||
* | Use C++11 nullptr | Daniel Pfeifer | 2017-08-24 | 1 | -2/+2 |
| | |||||
* | CPackIFW: Internationalization Support | Konstantin Podsvirov | 2017-05-12 | 1 | -0/+46 |
| | | | | | | | | | Changes: - DISPLAY_NAME and DESCRIPTION in CPackIFW module now is MULTI_ARGS; - Added internationalization support for DisplayName and Description properties in cmCPackIFWPackage class; - Added documentation to CPackIFW module; - Added release note. | ||||
* | CPackIFW: Access refactoring | Konstantin Podsvirov | 2017-05-09 | 1 | -13/+18 |
| | | | | | | Changes: - Access members with this->; - Access nested enum values with class name. | ||||
* | CPackIFW: Refactor out some commonly used code | Konstantin Podsvirov | 2017-05-03 | 1 | -0/+86 |
Move common used code to new cmCPackIFWCommon base class. |