diff options
author | Brad King <brad.king@kitware.com> | 2020-09-03 19:38:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-08 18:52:22 (GMT) |
commit | 8bb5c96bf8bc363afa5da09ce1979614565d31ba (patch) | |
tree | 6eb38a64f7c482e9936b3e4af548ee2d9a523af8 /Source/cmLocalVisualStudio10Generator.h | |
parent | aea465793e9744fcda0c26dad14c0620b7448f14 (diff) | |
download | CMake-8bb5c96bf8bc363afa5da09ce1979614565d31ba.zip CMake-8bb5c96bf8bc363afa5da09ce1979614565d31ba.tar.gz CMake-8bb5c96bf8bc363afa5da09ce1979614565d31ba.tar.bz2 |
cmLocalVisualStudio7Generator: Adopt SourcesVisited lookup table
Move it up the hierarchy from `cmLocalVisualStudio10Generator`.
Propagate contents from a target's dependencies as part of the main
target iteration logic instead of as part of the generator-specific
target generation.
Diffstat (limited to 'Source/cmLocalVisualStudio10Generator.h')
-rw-r--r-- | Source/cmLocalVisualStudio10Generator.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/cmLocalVisualStudio10Generator.h b/Source/cmLocalVisualStudio10Generator.h index 631132e..45ee082 100644 --- a/Source/cmLocalVisualStudio10Generator.h +++ b/Source/cmLocalVisualStudio10Generator.h @@ -28,19 +28,10 @@ public: void ReadAndStoreExternalGUID(const std::string& name, const char* path) override; - std::set<cmSourceFile const*>& GetSourcesVisited( - cmGeneratorTarget const* target) - { - return SourcesVisited[target]; - }; - protected: const char* ReportErrorLabel() const override; bool CustomCommandUseLocal() const override { return true; } private: void GenerateTarget(cmGeneratorTarget* target) override; - - std::map<cmGeneratorTarget const*, std::set<cmSourceFile const*>> - SourcesVisited; }; |