diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-18 16:40:56 +0200 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-20 23:58:49 +0200 |
commit | 04b6bb167636ccf2fe565239a44249366ee1e452 (patch) | |
tree | 754d7cd880c859884b91b84865818edf26f49202 /Source/cmGlobalXCodeGenerator.cxx | |
parent | 400e3d19fcebf7d6e9551d585d60754bd937c28c (diff) | |
download | cmake-04b6bb167636ccf2fe565239a44249366ee1e452.tar.gz |
cmLocalGenerator: Simplify semantic of adding generator targets.
Don't store on the global generator as a side effect. Update clients to adapt.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx index ea1b1a0869..3838ebc04f 100644 --- a/Source/cmGlobalXCodeGenerator.cxx +++ b/Source/cmGlobalXCodeGenerator.cxx @@ -460,6 +460,7 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root, cmGeneratorTarget* allBuildGt = new cmGeneratorTarget(allbuild, root); root->AddGeneratorTarget(allbuild, allBuildGt); + root->GetGlobalGenerator()->AddGeneratorTarget(allbuild, allBuildGt); // Refer to the main build configuration file for easy editing. std::string listfile = root->GetCurrentSourceDirectory(); @@ -495,6 +496,7 @@ cmGlobalXCodeGenerator::AddExtraTargets(cmLocalGenerator* root, cmGeneratorTarget* checkGt = new cmGeneratorTarget(check, root); root->AddGeneratorTarget(check, checkGt); + root->GetGlobalGenerator()->AddGeneratorTarget(check, checkGt); } // now make the allbuild depend on all the non-utility targets |