summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-10-11 12:26:55 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-24 09:50:57 (GMT)
commitca124a15150b5f88a9dcd9edfc4f61cf473efc64 (patch)
tree0247216cca0f7abfc841f8073de3580692fcbc36 /Source
parenta342c9ffedb865919b7a13b5620caecbb5076865 (diff)
downloadCMake-ca124a15150b5f88a9dcd9edfc4f61cf473efc64.zip
CMake-ca124a15150b5f88a9dcd9edfc4f61cf473efc64.tar.gz
CMake-ca124a15150b5f88a9dcd9edfc4f61cf473efc64.tar.bz2
Rename the AutomocInfo.cmake file to be more generic.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmQtAutoGenerators.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx
index 5fbdb83..9016827 100644
--- a/Source/cmQtAutoGenerators.cxx
+++ b/Source/cmQtAutoGenerators.cxx
@@ -429,9 +429,9 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target)
const char* cmakeRoot = makefile->GetSafeDefinition("CMAKE_ROOT");
std::string inputFile = cmakeRoot;
- inputFile += "/Modules/AutomocInfo.cmake.in";
+ inputFile += "/Modules/AutogenInfo.cmake.in";
std::string outputFile = targetDir;
- outputFile += "/AutomocInfo.cmake";
+ outputFile += "/AutogenInfo.cmake";
makefile->ConfigureFile(inputFile.c_str(), outputFile.c_str(),
false, true, false);
@@ -519,7 +519,7 @@ bool cmQtAutoGenerators::ReadAutogenInfoFile(cmMakefile* makefile,
{
std::string filename(cmSystemTools::CollapseFullPath(targetDirectory));
cmSystemTools::ConvertToUnixSlashes(filename);
- filename += "/AutomocInfo.cmake";
+ filename += "/AutogenInfo.cmake";
if (!makefile->ReadListFile(0, filename.c_str()))
{