| 75 | } |
| 76 | |
| 77 | bool HandleDirectContent(cmTarget* tgt, |
| 78 | std::vector<std::string> const& content, |
| 79 | bool /*prepend*/, bool /*system*/) override |
| 80 | { |
| 81 | tgt->AppendProperty("SOURCES", |
| 82 | this->Join(this->ConvertToAbsoluteContent( |
| 83 | tgt, content, IsInterface::No, CheckCMP0076::Yes)), |
| 84 | this->Makefile->GetBacktrace()); |
| 85 | return true; // Successfully handled. |
| 86 | } |
| 87 | |
| 88 | bool PopulateTargetProperties(std::string const& scope, |
| 89 | std::vector<std::string> const& content, |
nothing calls this directly
no test coverage detected