summaryrefslogtreecommitdiffstats
path: root/Source/cmMessageMetadata.h
Commit message (Collapse)AuthorAgeFilesLines
* StdIo: Replace uses of KWSys Terminal with StdIo::PrintBrad King2025-05-191-2/+2
| | | | | | | | | | | | | The latter: * uses a type-safe representation of text attributes, * works with `StdIo::Console` to print arbitrary UTF-8 text in color, and * writes VT100 sequences to Windows Consoles when supported, eliminating racy console text attribute changes in parallel `make` output. Fixes: #22450, #26689, #26924
* 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-1/+1
| | | | | | | | | | | | | | | 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
* cmMessenger: Color messages to terminal by typeMarius Messerschmidt2021-05-201-0/+3
| | | | Fixes: #16183
* cmMessenger: Pass title inside a metadata structureMarius Messerschmidt2021-05-191-0/+8