summaryrefslogtreecommitdiff
path: root/Source/cmInstallSubdirectoryGenerator.h
Commit message (Collapse)AuthorAgeFilesLines
* cmInstall*Generator: std::string paramsVitaly Stakhovsky2020-01-211-3/+3
| | | | | Several construction parameters converted to std::string Also made a few class members const
* Revise include order using clang-format-6.0Kitware Robot2019-10-011-2/+2
| | | | | 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.
* Refactor: Allow cmInstallGenerator::Compute() to return an errorKyle Edwards2019-05-131-1/+1
| | | | | | This is preparation for an upcoming merge request, which will add a new cmInstallGenerator that returns false if there are errors in the Compute() step.
* add_subdirectory: Run subdirectory install rules in correct orderKyle Edwards2018-10-101-0/+41
Before this change, install rules created by add_subdirectory() would be executed after all of the top-level install rules, even if they were declared before the top-level rules. This change adds a new policy, CMP0082, which interleaves the add_subdirectory() install rules with the other install rules so they are run in the correct order.