diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-12 22:03:23 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-19 13:29:07 (GMT) |
commit | 14bf7783f4de829f62041d1dbf3989160820b2b7 (patch) | |
tree | b0ee83b947e21c3ae73efaac965668c3e686dc96 /Source/cmGlobalGenerator.h | |
parent | f428ca25f5f983cb57eb009a330c09506ee81587 (diff) | |
download | CMake-14bf7783f4de829f62041d1dbf3989160820b2b7.zip CMake-14bf7783f4de829f62041d1dbf3989160820b2b7.tar.gz CMake-14bf7783f4de829f62041d1dbf3989160820b2b7.tar.bz2 |
Store cmGeneratorTargets with the makefile.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index ce91793..2f4ebc3 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -18,6 +18,7 @@ #include "cmTarget.h" // For cmTargets #include "cmTargetDepend.h" // For cmTargetDependSet #include "cmSystemTools.h" // for cmSystemTools::OutputOption +#include "cmGeneratorTarget.h" class cmake; class cmGeneratorTarget; class cmMakefile; @@ -383,8 +384,7 @@ private: TargetDependMap TargetDependencies; // Per-target generator information. - typedef std::map<cmTarget*, cmGeneratorTarget*> GeneratorTargetsType; - GeneratorTargetsType GeneratorTargets; + cmGeneratorTargetsType GeneratorTargets; void CreateGeneratorTargets(); void ClearGeneratorTargets(); virtual void ComputeTargetObjects(cmGeneratorTarget* gt) const; |