summaryrefslogtreecommitdiffstats
path: root/Source/cmState.cxx
diff options
context:
space:
mode:
authorJuan Ramos <cmake@jpr.mozmail.com>2022-10-21 01:53:14 (GMT)
committerJuan Ramos <cmake@jpr.mozmail.com>2022-10-21 01:53:14 (GMT)
commit3c3bce133dda14a60d15eaa03edff527a53c01d4 (patch)
tree61ba8fdd12f66c12d58783aad3b2bce1c18eee32 /Source/cmState.cxx
parentf4995637a78dbc6c08b7472f55bb84936c9c4ab0 (diff)
downloadCMake-3c3bce133dda14a60d15eaa03edff527a53c01d4.zip
CMake-3c3bce133dda14a60d15eaa03edff527a53c01d4.tar.gz
CMake-3c3bce133dda14a60d15eaa03edff527a53c01d4.tar.bz2
cmake: Honor CMAKE_GENERATOR env var in --help output
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r--Source/cmState.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx
index 3d38e73..17ee7f3 100644
--- a/Source/cmState.cxx
+++ b/Source/cmState.cxx
@@ -786,6 +786,8 @@ std::string cmState::ModeToString(cmState::Mode mode)
return "CTEST";
case CPack:
return "CPACK";
+ case Help:
+ return "HELP";
case Unknown:
return "UNKNOWN";
}