diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-02 11:40:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-24 07:14:13 (GMT) |
commit | be23dcfeb1ef2d855bd24bb933ae7da4a6b4b9da (patch) | |
tree | 425aa78eb4cd22a491bdd7bd99b67124fdeea2e4 /Source/cmcmd.cxx | |
parent | 52d5d4e9154644597630ed844a254dfb8de524dd (diff) | |
download | CMake-be23dcfeb1ef2d855bd24bb933ae7da4a6b4b9da.zip CMake-be23dcfeb1ef2d855bd24bb933ae7da4a6b4b9da.tar.gz CMake-be23dcfeb1ef2d855bd24bb933ae7da4a6b4b9da.tar.bz2 |
Rename the cmake_automoc command to cmake_autogen.
There is no need for a "cmake_automoc" backward compatibility command
because it is internal, undocumented, and only executed from a matching
version of cmake.
Diffstat (limited to 'Source/cmcmd.cxx')
-rw-r--r-- | Source/cmcmd.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index 79a3969..26251b3 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -632,7 +632,7 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string>& args) { return cmcmd::ExecuteEchoColor(args); } - else if (args[1] == "cmake_automoc") + else if (args[1] == "cmake_autogen") { cmQtAutoGenerators autogen; const char *config = args[3].empty() ? 0 : args[3].c_str(); |