diff options
author | Stephen Kelly <steveire@gmail.com> | 2013-10-02 11:50:07 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2013-10-24 07:14:13 (GMT) |
commit | 4abb111584c4f0738cd2858cfa7d3adee5248a83 (patch) | |
tree | e3b973ec409c5af1532e1a0238a861f31dc35df4 /Source | |
parent | 03878c9a22719eb8e86025c3cb489af8fd47a250 (diff) | |
download | CMake-4abb111584c4f0738cd2858cfa7d3adee5248a83.zip CMake-4abb111584c4f0738cd2858cfa7d3adee5248a83.tar.gz CMake-4abb111584c4f0738cd2858cfa7d3adee5248a83.tar.bz2 |
Rename local variable to reflect generic use.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index 7e61772..26e003f 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -207,13 +207,13 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) const char* targetName = target->GetName(); // create a custom target for running automoc at buildtime: - std::string automocTargetName = targetName; - automocTargetName += "_automoc"; + std::string autogenTargetName = targetName; + autogenTargetName += "_automoc"; std::string targetDir = makefile->GetCurrentOutputDirectory(); targetDir += makefile->GetCMakeInstance()->GetCMakeFilesDirectory(); targetDir += "/"; - targetDir += automocTargetName; + targetDir += autogenTargetName; targetDir += ".dir/"; cmCustomCommandLine currentLine; @@ -264,7 +264,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) #endif { cmTarget* automocTarget = makefile->AddUtilityCommand( - automocTargetName.c_str(), true, + autogenTargetName.c_str(), true, workingDirectory.c_str(), depends, commandLines, false, automocComment.c_str()); // Set target folder @@ -280,7 +280,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) copyTargetProperty(automocTarget, target, "FOLDER"); } - target->AddUtility(automocTargetName.c_str()); + target->AddUtility(autogenTargetName.c_str()); } // configure a file to get all information to automoc at buildtime: @@ -329,7 +329,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) static_cast<void>(varScope); makefile->AddDefinition("_moc_target_name", - cmLocalGenerator::EscapeForCMake(automocTargetName.c_str()).c_str()); + cmLocalGenerator::EscapeForCMake(autogenTargetName.c_str()).c_str()); makefile->AddDefinition("_moc_options", cmLocalGenerator::EscapeForCMake(_moc_options.c_str()).c_str()); makefile->AddDefinition("_moc_files", @@ -408,7 +408,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) if (!qt5Moc) { cmSystemTools::Error("Qt5::moc target not found ", - automocTargetName.c_str()); + autogenTargetName.c_str()); return; } makefile->AddDefinition("_qt_moc_executable", qt5Moc->GetLocation(0)); @@ -418,7 +418,7 @@ void cmQtAutoGenerators::SetupAutoGenerateTarget(cmTarget* target) if (strcmp(qtVersion, "4") != 0) { cmSystemTools::Error("The CMAKE_AUTOMOC feature supports only Qt 4 and " - "Qt 5 ", automocTargetName.c_str()); + "Qt 5 ", autogenTargetName.c_str()); } } |