| 445 | } |
| 446 | |
| 447 | std::string cmNinjaTargetGenerator::GetClangTidyReplacementsFilePath( |
| 448 | std::string const& directory, cmSourceFile const& source, |
| 449 | std::string const& config) const |
| 450 | { |
| 451 | auto const& objectName = this->GeneratorTarget->GetObjectName(&source); |
| 452 | return cmStrCat(directory, '/', |
| 453 | this->LocalGenerator->CreateSafeObjectFileName( |
| 454 | this->GetObjectFileDir(config)), |
| 455 | '/', objectName, ".yaml"); |
| 456 | } |
| 457 | |
| 458 | std::string cmNinjaTargetGenerator::GetPreprocessedFilePath( |
| 459 | cmSourceFile const* source, std::string const& config) const |
no test coverage detected