diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2022-09-15 18:50:55 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2022-09-15 18:50:55 (GMT) |
commit | e7087308ce9cc529e233489a4cec4c4cd7ece51a (patch) | |
tree | 1a15ab6920986414f56c76462d204b7df15dec31 /Source/cmake.cxx | |
parent | 01a25d72c69b0a9a60c1a62939d6a2c543448118 (diff) | |
download | CMake-e7087308ce9cc529e233489a4cec4c4cd7ece51a.zip CMake-e7087308ce9cc529e233489a4cec4c4cd7ece51a.tar.gz CMake-e7087308ce9cc529e233489a4cec4c4cd7ece51a.tar.bz2 |
cmake --list-presets: List package as a valid option
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 281e63f..3b105e3 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1145,7 +1145,7 @@ void cmake::SetArgs(const std::vector<std::string>& args) } else { cmSystemTools::Error( "Invalid value specified for --list-presets.\n" - "Valid values are configure, build, test, or all. " + "Valid values are configure, build, test, package, or all. " "When no value is passed the default is configure."); return false; } |