|
|
@ -1543,10 +1543,7 @@ bool cmGlobalGenerator::Compute()
|
|
|
|
// so create the map from project name to vector of local generators
|
|
|
|
// so create the map from project name to vector of local generators
|
|
|
|
this->FillProjectMap();
|
|
|
|
this->FillProjectMap();
|
|
|
|
|
|
|
|
|
|
|
|
// Add automatically generated sources (e.g. unity build).
|
|
|
|
this->CreateFileGenerateOutputs();
|
|
|
|
if (!this->AddAutomaticSources()) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Iterate through all targets and add verification targets for header sets
|
|
|
|
// Iterate through all targets and add verification targets for header sets
|
|
|
|
if (!this->AddHeaderSetVerification()) {
|
|
|
|
if (!this->AddHeaderSetVerification()) {
|
|
|
@ -1587,10 +1584,11 @@ bool cmGlobalGenerator::Compute()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Add automatically generated sources (e.g. unity build).
|
|
|
|
// Add unity sources after computing compile features. Unity sources do
|
|
|
|
// Add unity sources after computing compile features. Unity sources do
|
|
|
|
// not change the set of languages or features, but we need to know them
|
|
|
|
// not change the set of languages or features, but we need to know them
|
|
|
|
// to filter out sources that are scanned for C++ module dependencies.
|
|
|
|
// to filter out sources that are scanned for C++ module dependencies.
|
|
|
|
if (!this->AddUnitySources()) {
|
|
|
|
if (!this->AddAutomaticSources()) {
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -1860,16 +1858,21 @@ bool cmGlobalGenerator::AddHeaderSetVerification()
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool cmGlobalGenerator::AddAutomaticSources()
|
|
|
|
void cmGlobalGenerator::CreateFileGenerateOutputs()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
lg->CreateEvaluationFileOutputs();
|
|
|
|
lg->CreateEvaluationFileOutputs();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cmGlobalGenerator::AddAutomaticSources()
|
|
|
|
|
|
|
|
{
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
for (const auto& gt : lg->GetGeneratorTargets()) {
|
|
|
|
for (const auto& gt : lg->GetGeneratorTargets()) {
|
|
|
|
if (!gt->CanCompileSources()) {
|
|
|
|
if (!gt->CanCompileSources()) {
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lg->AddUnityBuild(gt.get());
|
|
|
|
lg->AddISPCDependencies(gt.get());
|
|
|
|
lg->AddISPCDependencies(gt.get());
|
|
|
|
// Targets that reuse a PCH are handled below.
|
|
|
|
// Targets that reuse a PCH are handled below.
|
|
|
|
if (!gt->GetProperty("PRECOMPILE_HEADERS_REUSE_FROM")) {
|
|
|
|
if (!gt->GetProperty("PRECOMPILE_HEADERS_REUSE_FROM")) {
|
|
|
@ -1889,29 +1892,8 @@ bool cmGlobalGenerator::AddAutomaticSources()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// The above transformations may have changed the classification of sources.
|
|
|
|
// The above transformations may have changed the classification of sources,
|
|
|
|
// Clear the source list and classification cache (KindedSources) of all
|
|
|
|
// e.g., sources that go into unity builds become SourceKindUnityBatched.
|
|
|
|
// targets so that it will be recomputed correctly by the generators later
|
|
|
|
|
|
|
|
// now that the above transformations are done for all targets.
|
|
|
|
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
|
|
|
|
for (const auto& gt : lg->GetGeneratorTargets()) {
|
|
|
|
|
|
|
|
gt->ClearSourcesCache();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool cmGlobalGenerator::AddUnitySources()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
for (const auto& lg : this->LocalGenerators) {
|
|
|
|
|
|
|
|
for (const auto& gt : lg->GetGeneratorTargets()) {
|
|
|
|
|
|
|
|
if (!gt->CanCompileSources()) {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
lg->AddUnityBuild(gt.get());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// The above transformation may have changed the classification of sources.
|
|
|
|
|
|
|
|
// Clear the source list and classification cache (KindedSources) of all
|
|
|
|
// Clear the source list and classification cache (KindedSources) of all
|
|
|
|
// targets so that it will be recomputed correctly by the generators later
|
|
|
|
// targets so that it will be recomputed correctly by the generators later
|
|
|
|
// now that the above transformations are done for all targets.
|
|
|
|
// now that the above transformations are done for all targets.
|
|
|
|