| 562 | } |
| 563 | |
| 564 | void cmGeneratorTarget::AddSourceCommon(std::string const& src, bool before) |
| 565 | { |
| 566 | this->SourceEntries.insert( |
| 567 | before ? this->SourceEntries.begin() : this->SourceEntries.end(), |
| 568 | TargetPropertyEntry::Create( |
| 569 | *this->LocalGenerator->GetCMakeInstance(), |
| 570 | BT<std::string>(src, this->Makefile->GetBacktrace()), true)); |
| 571 | this->ClearSourcesCache(); |
| 572 | } |
| 573 | |
| 574 | cmSourceFile* cmGeneratorTarget::AddSource(std::string const& src, bool before) |
| 575 | { |
no test coverage detected