diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-09-24 18:07:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-24 07:14:12 (GMT) |
commit | 5c058c8f12742dcb96b2e22b43208f345a865fbf (patch) | |
tree | 2b9b1bf846d1a718cbdcb26fce2a9a36dd99e170 /Source/cmcmd.cxx | |
parent | a25c440f195e0ebc3f812c5e68f7f9a7546f249d (diff) | |
download | CMake-5c058c8f12742dcb96b2e22b43208f345a865fbf.zip CMake-5c058c8f12742dcb96b2e22b43208f345a865fbf.tar.gz CMake-5c058c8f12742dcb96b2e22b43208f345a865fbf.tar.bz2 |
Rename the cmQtAutomoc class to cmQtAutoGenerators.
It will be extended to process .ui and .qrc files too.
Diffstat (limited to 'Source/cmcmd.cxx')
-rw-r--r-- | Source/cmcmd.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index 9814aea..2fba5dc 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -13,7 +13,7 @@ #include "cmMakefile.h" #include "cmLocalGenerator.h" #include "cmGlobalGenerator.h" -#include "cmQtAutomoc.h" +#include "cmQtAutoGenerators.h" #include "cmVersion.h" #if defined(CMAKE_BUILD_WITH_CMAKE) @@ -634,7 +634,7 @@ int cmcmd::ExecuteCMakeCommand(std::vector<std::string>& args) } else if (args[1] == "cmake_automoc") { - cmQtAutomoc automoc; + cmQtAutoGenerators automoc; const char *config = args[3].empty() ? 0 : args[3].c_str(); bool automocSuccess = automoc.Run(args[2].c_str(), config); return automocSuccess ? 0 : 1; |