summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/try_run/ConfigureLog-config.txt
Commit message (Collapse)AuthorAgeFilesLines
* try_compile: Record propagated CMake variables in configure logBrad King2023-02-011-0/+15
| | | | | | | These provide more detailed information about how the test project was configured. Issue: #23200
* Tests: Match configure log try_compile directories more preciselyBrad King2023-01-241-10/+10
| | | | | Do not accept a double-quote in the `try_compile` work directory to ensure we do not match more than the field value.
* Modules: Record system inspection steps in the configure logBrad King2023-01-181-2/+16
| | | | | | | | Replace old-style `file(APPEND .../CMake{Output,Error}.log)` logging with calls to `message(CONFIGURE_LOG)` to record the steps in the `CMakeConfigureLog.yaml` configure log instead. Issue: #23200
* try_compile: Record stack of in-progess checks in configure logBrad King2023-01-161-0/+7
| | | | | | | | Many `try_compile` and `try_run` calls occur inside check modules between `message(CHECK_START)` and `message(CHECK_{PASS,FAIL})` pairs. Add a field to configure log entries to report this context. Issue: #23200
* try_compile: Add optional LOG_DESCRIPTION to record in configure logBrad King2023-01-161-0/+2
| | | | Issue: #23200
* ConfigureLog: Version individual events instead of the whole logBrad King2022-12-161-8/+5
| | | | | | | | In order to support multiple log versions without buffering the entire log, move versioning to the level of individual events. Multiple versions of an event may then be logged consecutively. Issue: #23200
* ConfigureLog: Log try_compile and try_run checksMatthew Woehlke2022-12-161-0/+99
Add configure log events for `try_compile` and `try_run` results. Issue: #23200