summaryrefslogtreecommitdiffstats
path: root/Source/CPack/IFW/cmCPackIFWCommon.cxx
Commit message (Collapse)AuthorAgeFilesLines
* cmList class: various enhancementsMarc Chevrier2023-04-291-6/+6
|
* CMake code rely on cmList class for CMake lists management (part. 1)Marc Chevrier2023-04-241-8/+7
|
* Source: Simplify some boolean expressionsRose2021-10-231-5/+4
|
* Rename cmProp in cmValueMarc Chevrier2021-09-211-1/+1
|
* cmSystemTools::VersionCompare: use std::string for argumentsMarc Chevrier2021-09-171-5/+3
|
* cmCPackGenerator::GetOption returns cmPropMarc Chevrier2021-09-131-1/+1
|
* clang-tidy: fix `readability-make-member-function-const` warningsBen Boeckel2021-01-271-4/+4
|
* IWYU: mark <cstddef> as neededBen Boeckel2020-04-291-1/+1
| | | | Newer IWYU is not seeing them as needed for `size_t`.
* Revise include order using clang-format-6.0Kitware Robot2019-10-011-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_tBrad King2019-09-031-0/+1
| | | | The IWYU tool we use for CI now diagnoses these.
* Source sweep: Replace cmExpandList with the shorter cmExpandedListSebastian Holtermann2019-08-231-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::ExpandListArgumentSebastian Holtermann2019-08-141-2/+3
|
* Use C++11 nullptrDaniel Pfeifer2017-08-241-2/+2
|
* CPackIFW: Internationalization SupportKonstantin Podsvirov2017-05-121-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 refactoringKonstantin Podsvirov2017-05-091-13/+18
| | | | | | Changes: - Access members with this->; - Access nested enum values with class name.
* CPackIFW: Refactor out some commonly used codeKonstantin Podsvirov2017-05-031-0/+86
Move common used code to new cmCPackIFWCommon base class.