summaryrefslogtreecommitdiffstats
path: root/Source/cmCMakePresetsGraphReadJSONConfigurePresets.cxx
Commit message (Collapse)AuthorAgeFilesLines
* 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-8/+8
| | | | | | | | | | | | | | | 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
* presets: Add graphviz supportAliaksandr Averchanka2024-07-301-0/+2
| | | | Closes: #22164
* CMakePresets: Make error generators proper functionsKyle Edwards2023-08-161-15/+15
| | | | And rename cmCMakePresetErrors to cmCMakePresetsErrors.
* IWYU: Update for Debian 12 CI jobBrad King2023-07-281-1/+2
| | | | | | `include-what-you-use` diagnostics, in practice, are specific to the environment's compiler and standard library. Update includes to satisfy IWYU for our CI job under Debian 12.
* presets: Add trace options to configure presetsArtin Alavi2023-03-301-0/+68
| | | | | | Add JSON schema version 7 to support them. Fixes: #22543
* presets: Improve JSON parser and error messagesMartin Duffy2023-03-291-44/+49
|
* cmJSONHelpers: Restructure cmJSONHelpersMartin Duffy2022-05-051-12/+12
| | | | Restructure cmJSONHelpers to prevent SunPro errors when passing context.
* Refactor: Split JSON processing into configure, build, and test presetsKyle Edwards2022-01-061-0/+228
Split up the file so that it won't be too big on some systems.