diff options
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-configure-log.7.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Help/manual/cmake-configure-log.7.rst b/Help/manual/cmake-configure-log.7.rst index a9c185d..72d4093 100644 --- a/Help/manual/cmake-configure-log.7.rst +++ b/Help/manual/cmake-configure-log.7.rst @@ -190,6 +190,8 @@ A ``try_compile-v1`` event is a YAML mapping: directories: source: "/path/to/.../TryCompile-01234" binary: "/path/to/.../TryCompile-01234" + cmakeVariables: + SOME_VARIABLE: "Some Value" buildResult: variable: "COMPILE_RESULT" cached: true @@ -217,6 +219,12 @@ The keys specific to ``try_compile-v1`` mappings are: For non-project invocations, this is often the same as the source directory. +``cmakeVariables`` + An optional key that is present when CMake propagates variables + into the test project, either automatically or due to the + :variable:`CMAKE_TRY_COMPILE_PLATFORM_VARIABLES` variable. + Its value is a mapping from variable names to their values. + ``buildResult`` A mapping describing the result of compiling the test code. It has the following keys: |