| 587 | } |
| 588 | |
| 589 | void cmGeneratorTarget::AddIncludeDirectory(std::string const& src, |
| 590 | bool before) |
| 591 | { |
| 592 | this->Target->InsertInclude( |
| 593 | BT<std::string>(src, this->Makefile->GetBacktrace()), before); |
| 594 | this->IncludeDirectoriesEntries.insert( |
| 595 | before ? this->IncludeDirectoriesEntries.begin() |
| 596 | : this->IncludeDirectoriesEntries.end(), |
| 597 | TargetPropertyEntry::Create( |
| 598 | *this->Makefile->GetCMakeInstance(), |
| 599 | BT<std::string>(src, this->Makefile->GetBacktrace()), true)); |
| 600 | } |
| 601 | |
| 602 | void cmGeneratorTarget::AddSystemIncludeDirectory(std::string const& inc, |
| 603 | std::string const& lang) |
no test coverage detected