summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallFileSetGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* GenEx: Consolidate target property evaluation context argumentsBrad King2025-09-221-4/+4
|
* GenEx: Collect evaluation arguments into local Context structuresBrad King2025-09-221-3/+6
|
* install(TARGETS): Don't ignore non-extant file setsVito Gamberini2025-06-121-3/+50
| | | | | | | | | | | | When installing FILE_SETs, it is possible the FILE_SET has not yet been created with target_sources(FILE_SET). Instead of ignoring this situation, we need to track the installed FILE_SET names and their possible install destinations. At generation time we resolve the names and destinations concretely. If a FILE_SET wasn't provided or isn't an INTERFACE, we silently bail out. Fixes: #26697
* LICENSE: Replace references to Copyright.txt with LICENSE.rstKitware Robot2025-03-031-1/+1
| | | | | | | | | | ``` git grep -lz 'Copyright.txt or https://cmake.org/licensing ' | while IFS= read -r -d $'\0' f ; do sed -i '/Copyright.txt or https:\/\/cmake.org\/licensing / { s/Copyright.txt/LICENSE.rst/ }' "$f" ; done ```
* Revise C++ coding style using clang-format with "east const"Kitware Robot2025-01-231-2/+2
| | | | | | | | | | | | | | | Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`, now with "east const" enforcement. Use `clang-format` version 18. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Issue: #26123
* cmConstStack: Factor out of cmListFileBacktraceBrad King2022-04-021-0/+1
| | | | | | | This presents value semantics for a stack of constant values. Internally it shares ownership to avoid copies. Previously this was implemented by `cmListFileBacktrace` explicitly, but the approach can be re-used for other kinds of stacks.
* install(TARGETS): Add FILE_SET modeKyle Edwards2021-10-271-0/+88