diff options
author | Sam Freed <safreed@microsoft.com> | 2021-02-12 19:49:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-15 15:52:32 (GMT) |
commit | 121d602923373f89d4b8e1b59fa79c55137ab11f (patch) | |
tree | 7ace875e330ec53aae4668511dee84c440add8cd /Source | |
parent | 7fd6bb6895c3c280dd73a76de05d0679ff0982a6 (diff) | |
download | CMake-121d602923373f89d4b8e1b59fa79c55137ab11f.zip CMake-121d602923373f89d4b8e1b59fa79c55137ab11f.tar.gz CMake-121d602923373f89d4b8e1b59fa79c55137ab11f.tar.bz2 |
presets: Inherit 'quiet' property for test presets
This was missed in the original implementation.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmCMakePresetsFile.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmCMakePresetsFile.cxx b/Source/cmCMakePresetsFile.cxx index 673cb65..29d5325 100644 --- a/Source/cmCMakePresetsFile.cxx +++ b/Source/cmCMakePresetsFile.cxx @@ -1278,6 +1278,7 @@ cmCMakePresetsFile::TestPreset::VisitPresetInherit( InheritOptionalValue(output.Debug, parentOutput.Debug); InheritOptionalValue(output.OutputOnFailure, parentOutput.OutputOnFailure); + InheritOptionalValue(output.Quiet, parentOutput.Quiet); InheritString(output.OutputLogFile, parentOutput.OutputLogFile); InheritOptionalValue(output.LabelSummary, parentOutput.LabelSummary); InheritOptionalValue(output.SubprojectSummary, |