| 579 | } |
| 580 | |
| 581 | void cmGeneratorTarget::AddTracedSources(std::vector<std::string> const& srcs) |
| 582 | { |
| 583 | this->Target->AddTracedSources(srcs); |
| 584 | if (!srcs.empty()) { |
| 585 | this->AddSourceCommon(cmJoin(srcs, ";")); |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | void cmGeneratorTarget::AddIncludeDirectory(std::string const& src, |
| 590 | bool before) |
nothing calls this directly
no test coverage detected