| 572 | } |
| 573 | |
| 574 | cmSourceFile* cmGeneratorTarget::AddSource(std::string const& src, bool before) |
| 575 | { |
| 576 | auto* sf = this->Target->AddSource(src, before); |
| 577 | this->AddSourceCommon(src, before); |
| 578 | return sf; |
| 579 | } |
| 580 | |
| 581 | void cmGeneratorTarget::AddTracedSources(std::vector<std::string> const& srcs) |
| 582 | { |
no test coverage detected