QtAutogen: Rcc related setup function rename

This commit is contained in:
Sebastian Holtermann 2016-11-30 10:54:07 +01:00
parent 8de8d3b191
commit 43747ee8b3

View File

@ -558,7 +558,7 @@ static bool ListQtRccInputs(const std::string& qtMajorVersion,
return ListQt4RccInputs(sf, depends);
}
static void SetupAutoRccTarget(cmGeneratorTarget const* target)
static void RccSetupAutoTarget(cmGeneratorTarget const* target)
{
std::string _rcc_files;
const char* sepRccFiles = "";
@ -890,7 +890,7 @@ void cmQtAutoGeneratorInitializer::SetupAutoGenerateTarget(
SetupAutoUicTarget(target, skipUic, configUicOptions);
}
if (target->GetPropertyAsBool("AUTORCC")) {
SetupAutoRccTarget(target);
RccSetupAutoTarget(target);
}
std::string inputFile = cmSystemTools::GetCMakeRoot();