summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-18 14:40:56 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-20 21:58:49 (GMT)
commit04b6bb167636ccf2fe565239a44249366ee1e452 (patch)
tree754d7cd880c859884b91b84865818edf26f49202 /Source/cmLocalGenerator.cxx
parent400e3d19fcebf7d6e9551d585d60754bd937c28c (diff)
downloadCMake-04b6bb167636ccf2fe565239a44249366ee1e452.zip
CMake-04b6bb167636ccf2fe565239a44249366ee1e452.tar.gz
CMake-04b6bb167636ccf2fe565239a44249366ee1e452.tar.bz2
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/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index 1a4516c..833ffbf 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -451,7 +451,6 @@ void cmLocalGenerator::GenerateInstallRules()
void cmLocalGenerator::AddGeneratorTarget(cmTarget* t, cmGeneratorTarget* gt)
{
this->GeneratorTargets[t] = gt;
- this->GetGlobalGenerator()->AddGeneratorTarget(t, gt);
}
//----------------------------------------------------------------------------