| 1492 | } |
| 1493 | |
| 1494 | void cmTarget::GetTllSignatureTraces(std::ostream& s, TLLSignature sig) const |
| 1495 | { |
| 1496 | char const* sigString = |
| 1497 | (sig == cmTarget::KeywordTLLSignature ? "keyword" : "plain"); |
| 1498 | s << "The uses of the " << sigString << " signature are here:\n"; |
| 1499 | for (auto const& cmd : this->impl->TLLCommands) { |
| 1500 | if (cmd.first == sig) { |
| 1501 | cmListFileContext lfc = cmd.second; |
| 1502 | lfc.FilePath = cmSystemTools::RelativeIfUnder( |
| 1503 | this->impl->Makefile->GetState()->GetSourceDirectory(), lfc.FilePath); |
| 1504 | s << " * " << lfc << '\n'; |
| 1505 | } |
| 1506 | } |
| 1507 | } |
| 1508 | |
| 1509 | std::string const& cmTarget::GetInstallPath() const |
| 1510 | { |
no test coverage detected