diff options
author | Brad King <brad.king@kitware.com> | 2020-09-04 12:37:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-04 13:44:08 (GMT) |
commit | 69ee18163b9cf062d1306386b1bffceccdb24e3c (patch) | |
tree | 808def3f7a2596a05ae7074fc17b3925fd458104 /Source/cmLocalGhsMultiGenerator.h | |
parent | c4e296a60910c641a07695d1a9782912bce45d5c (diff) | |
download | CMake-69ee18163b9cf062d1306386b1bffceccdb24e3c.zip CMake-69ee18163b9cf062d1306386b1bffceccdb24e3c.tar.gz CMake-69ee18163b9cf062d1306386b1bffceccdb24e3c.tar.bz2 |
cmLocalGhsMultiGenerator: Generate targets in dependency order
Use the globally computed target ordering so that we generate all
of a target's dependencies before generating the target itself.
Diffstat (limited to 'Source/cmLocalGhsMultiGenerator.h')
-rw-r--r-- | Source/cmLocalGhsMultiGenerator.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmLocalGhsMultiGenerator.h b/Source/cmLocalGhsMultiGenerator.h index 1b6f109..be32a94 100644 --- a/Source/cmLocalGhsMultiGenerator.h +++ b/Source/cmLocalGhsMultiGenerator.h @@ -4,7 +4,6 @@ #include <map> #include <string> -#include <vector> #include "cmLocalGenerator.h" @@ -37,8 +36,4 @@ public: void ComputeObjectFilenames( std::map<cmSourceFile const*, std::string>& mapping, cmGeneratorTarget const* gt = nullptr) override; - -private: - void GenerateTargetsDepthFirst(cmGeneratorTarget* target, - std::vector<cmGeneratorTarget*>& remaining); }; |