summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-02 08:22:12 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-08-23 16:05:01 (GMT)
commitb9eb3cd1405d423bf0156fabc3340c396b1f308c (patch)
treef5abb02f18ab2e40dbc987bb4ea63188c41835fc /Source/cmGlobalGenerator.h
parentf5d2b7a6942ee291f8e0d4e8a7a7869037913de7 (diff)
downloadCMake-b9eb3cd1405d423bf0156fabc3340c396b1f308c.zip
CMake-b9eb3cd1405d423bf0156fabc3340c396b1f308c.tar.gz
CMake-b9eb3cd1405d423bf0156fabc3340c396b1f308c.tar.bz2
cmGlobalGenerator: Move LG to target map to subclass.
This is the only user.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index a13bede..86f52af 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -398,7 +398,7 @@ protected:
void CheckLocalGenerators();
bool IsExcluded(cmLocalGenerator* root, cmLocalGenerator* gen) const;
bool IsExcluded(cmLocalGenerator* root, cmGeneratorTarget* target) const;
- void FillLocalGeneratorToTargetMap();
+ virtual void FillLocalGeneratorToTargetMap() {}
void CreateDefaultGlobalTargets(cmTargets* targets);
cmTarget CreateGlobalTarget(const std::string& name, const char* message,
const cmCustomCommandLines* commandLines,
@@ -413,8 +413,6 @@ protected:
cmMakefile* CurrentMakefile;
// map from project name to vector of local generators in that project
std::map<std::string, std::vector<cmLocalGenerator*> > ProjectMap;
- std::map<cmLocalGenerator*, std::set<cmGeneratorTarget const*> >
- LocalGeneratorToTargetMap;
// Set of named installation components requested by the project.
std::set<std::string> InstallComponents;