summaryrefslogtreecommitdiffstats
path: root/Source/cmCMakePresetsGraph.cxx
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2022-09-13 14:42:11 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2022-09-13 14:42:11 (GMT)
commit3546657cc772ea4e8ce8d5240a447623fe2bf48a (patch)
tree54a3966b2fd345a2a0b94517b5c4aeceecc4a3c8 /Source/cmCMakePresetsGraph.cxx
parent9ffd170d2702e08b7a1c0259ac349d1edcbd9ad4 (diff)
downloadCMake-3546657cc772ea4e8ce8d5240a447623fe2bf48a.zip
CMake-3546657cc772ea4e8ce8d5240a447623fe2bf48a.tar.gz
CMake-3546657cc772ea4e8ce8d5240a447623fe2bf48a.tar.bz2
CMakePresets.json: Fix error message for unsupported package presets
Diffstat (limited to 'Source/cmCMakePresetsGraph.cxx')
-rw-r--r--Source/cmCMakePresetsGraph.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCMakePresetsGraph.cxx b/Source/cmCMakePresetsGraph.cxx
index c168a45..5b216bb 100644
--- a/Source/cmCMakePresetsGraph.cxx
+++ b/Source/cmCMakePresetsGraph.cxx
@@ -1115,7 +1115,7 @@ const char* cmCMakePresetsGraph::ResultToString(ReadFileResult result)
return "File version must be 2 or higher for build and test preset "
"support.";
case ReadFileResult::PACKAGE_PRESETS_UNSUPPORTED:
- return "File version must be 5 or higher for package preset support";
+ return "File version must be 6 or higher for package preset support";
case ReadFileResult::INCLUDE_UNSUPPORTED:
return "File version must be 4 or higher for include support";
case ReadFileResult::INVALID_INCLUDE: