| 83 | } |
| 84 | |
| 85 | void TargetIncludeDirectoriesImpl::HandleInterfaceContent( |
| 86 | cmTarget* tgt, std::vector<std::string> const& content, bool prepend, |
| 87 | bool system) |
| 88 | { |
| 89 | this->cmTargetPropCommandBase::HandleInterfaceContent(tgt, content, prepend, |
| 90 | system); |
| 91 | if (system) { |
| 92 | std::string joined = this->Join(content); |
| 93 | tgt->AppendProperty("INTERFACE_SYSTEM_INCLUDE_DIRECTORIES", joined, |
| 94 | this->Makefile->GetBacktrace()); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | } // namespace |
| 99 |
nothing calls this directly
no test coverage detected