summaryrefslogtreecommitdiffstats
path: root/Source/cmInstrumentationQuery.h
Commit message (Collapse)AuthorAgeFilesLines
* instrumentation: Rename postTest and postInstall hooksTyler Yankee2025-09-041-2/+2
| | | | | | | `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/+2
| | | | | | | 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/+3
| | | | | | | | 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-4/+4
| | | | Fixes: #26728
* 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 ```
* ctest: Include cmake instrumentation data in XML filesZack Galbreath2025-02-151-0/+1
|
* Revise C++ coding style using clang-format with "east const"Kitware Robot2025-01-231-3/+3
| | | | | | | | | | | | | | | 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/+49
Add a feature for collecting build instrumentation for CMake projects. Issue: #26099