From ca124a15150b5f88a9dcd9edfc4f61cf473efc64 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Fri, 11 Oct 2013 14:26:55 +0200 Subject: [PATCH] Rename the AutomocInfo.cmake file to be more generic. --- Modules/{AutomocInfo.cmake.in => AutogenInfo.cmake.in} | 0 Source/cmQtAutoGenerators.cxx | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename Modules/{AutomocInfo.cmake.in => AutogenInfo.cmake.in} (100%) diff --git a/Modules/AutomocInfo.cmake.in b/Modules/AutogenInfo.cmake.in similarity index 100% rename from Modules/AutomocInfo.cmake.in rename to Modules/AutogenInfo.cmake.in diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 5fbdb83f3..9016827e1 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())) {