diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 08:22:12 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-23 16:05:01 (GMT) |
commit | b9eb3cd1405d423bf0156fabc3340c396b1f308c (patch) | |
tree | f5abb02f18ab2e40dbc987bb4ea63188c41835fc /Source/cmGlobalUnixMakefileGenerator3.h | |
parent | f5d2b7a6942ee291f8e0d4e8a7a7869037913de7 (diff) | |
download | CMake-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/cmGlobalUnixMakefileGenerator3.h')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index fc53fa8..de7d858 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 |