summaryrefslogtreecommitdiff
path: root/Source/cmGlobalUnixMakefileGenerator3.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-02 10:22:12 +0200
committerStephen Kelly <steveire@gmail.com>2015-08-23 18:05:01 +0200
commitb9eb3cd1405d423bf0156fabc3340c396b1f308c (patch)
treef5abb02f18ab2e40dbc987bb4ea63188c41835fc /Source/cmGlobalUnixMakefileGenerator3.h
parentf5d2b7a6942ee291f8e0d4e8a7a7869037913de7 (diff)
downloadcmake-b9eb3cd1405d423bf0156fabc3340c396b1f308c.tar.gz
cmGlobalGenerator: Move LG to target map to subclass.
This is the only user.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r--Source/cmGlobalUnixMakefileGenerator3.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h
index fc53fa8021..de7d858b3b 100644
--- a/Source/cmGlobalUnixMakefileGenerator3.h
+++ b/Source/cmGlobalUnixMakefileGenerator3.h
@@ -206,6 +206,10 @@ protected:
private:
virtual const char* GetBuildIgnoreErrorsFlag() const { return "-i"; }
virtual std::string GetEditCacheCommand() const;
+
+ std::map<cmLocalGenerator*, std::set<cmGeneratorTarget const*> >
+ LocalGeneratorToTargetMap;
+ virtual void FillLocalGeneratorToTargetMap();
};
#endif