cmGeneratorTarget: Rename method to match operation.

The manifest is computed, not generated, according to current language
used in cmake method naming.
This commit is contained in:
Stephen Kelly 2015-08-25 08:25:12 +02:00
parent ec56d24451
commit 616d8f02d5
5 changed files with 6 additions and 6 deletions

View File

@ -2554,7 +2554,7 @@ void cmGeneratorTarget::GetCompileDefinitions(std::vector<std::string> &list,
}
//----------------------------------------------------------------------------
void cmGeneratorTarget::GenerateTargetManifest(
void cmGeneratorTarget::ComputeTargetManifest(
const std::string& config) const
{
if (this->Target->IsImported())

View File

@ -251,7 +251,7 @@ public:
const std::string& config) const;
/** Add the target output files to the global generator manifest. */
void GenerateTargetManifest(const std::string& config) const;
void ComputeTargetManifest(const std::string& config) const;
/**
* Trace through the source files in this target and add al source files

View File

@ -1327,7 +1327,7 @@ void cmGlobalGenerator::Generate()
// Compute the manifest of main targets generated.
for (i = 0; i < this->LocalGenerators.size(); ++i)
{
this->LocalGenerators[i]->GenerateTargetManifest();
this->LocalGenerators[i]->ComputeTargetManifest();
}
// Compute the inter-target dependencies.

View File

@ -450,7 +450,7 @@ void cmLocalGenerator::GenerateInstallRules()
}
//----------------------------------------------------------------------------
void cmLocalGenerator::GenerateTargetManifest()
void cmLocalGenerator::ComputeTargetManifest()
{
// Collect the set of configuration types.
std::vector<std::string> configNames;
@ -478,7 +478,7 @@ void cmLocalGenerator::GenerateTargetManifest()
ci != configNames.end(); ++ci)
{
const char* config = ci->c_str();
target.GenerateTargetManifest(config);
target.ComputeTargetManifest(config);
}
}
}

View File

@ -67,7 +67,7 @@ public:
/**
* Generate a manifest of target files that will be built.
*/
void GenerateTargetManifest();
void ComputeTargetManifest();
///! Get the makefile for this generator
cmMakefile *GetMakefile() {