summaryrefslogtreecommitdiffstats
path: root/Source/cmCMakePresetsFile.cxx
diff options
context:
space:
mode:
authorSam Freed <safreed@microsoft.com>2021-02-12 19:49:36 (GMT)
committerBrad King <brad.king@kitware.com>2021-02-15 15:52:32 (GMT)
commit121d602923373f89d4b8e1b59fa79c55137ab11f (patch)
tree7ace875e330ec53aae4668511dee84c440add8cd /Source/cmCMakePresetsFile.cxx
parent7fd6bb6895c3c280dd73a76de05d0679ff0982a6 (diff)
downloadCMake-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/cmCMakePresetsFile.cxx')
-rw-r--r--Source/cmCMakePresetsFile.cxx1
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,