| 187 | } |
| 188 | |
| 189 | void cmComputeTargetDepends::CollectDepends() |
| 190 | { |
| 191 | // Allocate the dependency graph adjacency lists. |
| 192 | this->InitialGraph.resize(this->Targets.size()); |
| 193 | |
| 194 | // Compute each dependency list. |
| 195 | for (size_t i = 0; i < this->Targets.size(); ++i) { |
| 196 | this->CollectTargetDepends(i); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | void cmComputeTargetDepends::CollectTargetDepends(size_t depender_index) |
| 201 | { |
no test coverage detected