summaryrefslogtreecommitdiffstats
path: root/Source/cmInstrumentationQuery.cxx
Commit message (Collapse)AuthorAgeFilesLines
* instrumentation: Rename postTest and postInstall hooksTyler Yankee2025-09-041-3/+3
| | | | | | | `postCTest` and `postCMakeInstall` are more closely aligned with the corresponding snippets which cause cause them to trigger (`ctest` and `cmakeInstall`, respectively), and as such serve as better indicators of their true behavior.
* instrumentation: Add Google trace outputTyler Yankee2025-09-031-1/+1
| | | | | | | Add a feature to parse snippets into a trace file compatible with the Google Trace Event Format. Fixes: #26674
* instrumentation: Store CDash settings in query filesMartin Duffy2025-07-141-1/+2
| | | | | | | | Adds new `cdashSubmit` and `cdashVerbose` options to allow enabling instrumentation in CDash submissions using query files or the `cmake_instrumentation` command. Fixes: #26783, #26727
* instrumentation: Rename queries field to optionsMartin Duffy2025-07-101-9/+9
| | | | Fixes: #26728
* cmStrCat: use character literals where possibleBen Boeckel2025-05-151-1/+1
| | | | | Found and replaced using the `cmstrcat-to-char-literal` rule for `ast-grep`.
* ctest: Include cmake instrumentation data in XML filesZack Galbreath2025-02-151-2/+3
|
* Revise C++ coding style using clang-format with "east const"Kitware Robot2025-01-231-11/+11
| | | | | | | | | | | | | | | 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
* instrumentation: Collect and record project build system metricsMartin Duffy2025-01-151-0/+114
Add a feature for collecting build instrumentation for CMake projects. Issue: #26099