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:
parent
ec56d24451
commit
616d8f02d5
@ -2554,7 +2554,7 @@ void cmGeneratorTarget::GetCompileDefinitions(std::vector<std::string> &list,
|
|||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
void cmGeneratorTarget::GenerateTargetManifest(
|
void cmGeneratorTarget::ComputeTargetManifest(
|
||||||
const std::string& config) const
|
const std::string& config) const
|
||||||
{
|
{
|
||||||
if (this->Target->IsImported())
|
if (this->Target->IsImported())
|
||||||
|
@ -251,7 +251,7 @@ public:
|
|||||||
const std::string& config) const;
|
const std::string& config) const;
|
||||||
|
|
||||||
/** Add the target output files to the global generator manifest. */
|
/** 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
|
* Trace through the source files in this target and add al source files
|
||||||
|
@ -1327,7 +1327,7 @@ void cmGlobalGenerator::Generate()
|
|||||||
// Compute the manifest of main targets generated.
|
// Compute the manifest of main targets generated.
|
||||||
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
for (i = 0; i < this->LocalGenerators.size(); ++i)
|
||||||
{
|
{
|
||||||
this->LocalGenerators[i]->GenerateTargetManifest();
|
this->LocalGenerators[i]->ComputeTargetManifest();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compute the inter-target dependencies.
|
// Compute the inter-target dependencies.
|
||||||
|
@ -450,7 +450,7 @@ void cmLocalGenerator::GenerateInstallRules()
|
|||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
void cmLocalGenerator::GenerateTargetManifest()
|
void cmLocalGenerator::ComputeTargetManifest()
|
||||||
{
|
{
|
||||||
// Collect the set of configuration types.
|
// Collect the set of configuration types.
|
||||||
std::vector<std::string> configNames;
|
std::vector<std::string> configNames;
|
||||||
@ -478,7 +478,7 @@ void cmLocalGenerator::GenerateTargetManifest()
|
|||||||
ci != configNames.end(); ++ci)
|
ci != configNames.end(); ++ci)
|
||||||
{
|
{
|
||||||
const char* config = ci->c_str();
|
const char* config = ci->c_str();
|
||||||
target.GenerateTargetManifest(config);
|
target.ComputeTargetManifest(config);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -67,7 +67,7 @@ public:
|
|||||||
/**
|
/**
|
||||||
* Generate a manifest of target files that will be built.
|
* Generate a manifest of target files that will be built.
|
||||||
*/
|
*/
|
||||||
void GenerateTargetManifest();
|
void ComputeTargetManifest();
|
||||||
|
|
||||||
///! Get the makefile for this generator
|
///! Get the makefile for this generator
|
||||||
cmMakefile *GetMakefile() {
|
cmMakefile *GetMakefile() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user