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/cmQtAutoGenerators.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/cmQtAutoGenerators.cxx')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 24f4498..ee30987 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -221,7 +221,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) cmCustomCommandLine currentLine; currentLine.push_back(makefile->GetSafeDefinition("CMAKE_COMMAND")); currentLine.push_back("-E"); - currentLine.push_back("cmake_automoc"); + currentLine.push_back("cmake_autogen"); currentLine.push_back(targetDir); currentLine.push_back("$<CONFIGURATION>"); |