diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2022-09-07 12:23:21 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2022-09-07 12:23:21 (GMT) |
commit | a47eef32a30599e01e445e6dd69d4702bceae1bd (patch) | |
tree | d3b50ad16adb6ad60c659c4d9b02b5419e85ba0f /Source/cmGlobalGenerator.cxx | |
parent | aa4da6944e10467f6a19fcb7985831e5676cab7f (diff) | |
download | CMake-a47eef32a30599e01e445e6dd69d4702bceae1bd.zip CMake-a47eef32a30599e01e445e6dd69d4702bceae1bd.tar.gz CMake-a47eef32a30599e01e445e6dd69d4702bceae1bd.tar.bz2 |
renames method FinalizeTargetCompileInfo() in FinalizeTargetConfiguration().
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r-- | Source/cmGlobalGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index 4feae6d..254220b 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -1501,7 +1501,7 @@ bool cmGlobalGenerator::Compute() if (!this->CheckALLOW_DUPLICATE_CUSTOM_TARGETS()) { return false; } - this->FinalizeTargetCompileInfo(); + this->FinalizeTargetConfiguration(); this->CreateGenerationObjects(); @@ -1825,7 +1825,7 @@ cmGlobalGenerator::CreateMSVC60LinkLineComputer( cm::make_unique<cmMSVC60LinkLineComputer>(outputConverter, stateDir)); } -void cmGlobalGenerator::FinalizeTargetCompileInfo() +void cmGlobalGenerator::FinalizeTargetConfiguration() { std::vector<std::string> const langs = this->CMakeInstance->GetState()->GetEnabledLanguages(); @@ -1838,8 +1838,8 @@ void cmGlobalGenerator::FinalizeTargetCompileInfo() for (auto& target : mf->GetTargets()) { cmTarget* t = &target.second; - t->FinalizeTargetCompileInfo(noConfigCompileDefinitions, - perConfigCompileDefinitions); + t->FinalizeTargetConfiguration(noConfigCompileDefinitions, + perConfigCompileDefinitions); } // The standard include directories for each language |