| 1405 | } |
| 1406 | |
| 1407 | void cmMakefileTargetGenerator::WriteTargetLinkDependRules() |
| 1408 | { |
| 1409 | if (!this->GeneratorTarget->HasLinkDependencyFile(this->GetConfigName())) { |
| 1410 | return; |
| 1411 | } |
| 1412 | |
| 1413 | auto depFile = this->LocalGenerator->GetLinkDependencyFile( |
| 1414 | this->GeneratorTarget, this->GetConfigName()); |
| 1415 | this->CleanFiles.insert(depFile); |
| 1416 | this->LocalGenerator->AddImplicitDepends( |
| 1417 | this->GeneratorTarget, "LINK", |
| 1418 | this->GeneratorTarget->GetFullPath(this->GetConfigName()), depFile, |
| 1419 | cmDependencyScannerKind::Compiler); |
| 1420 | } |
| 1421 | std::string cmMakefileTargetGenerator::GetClangTidyReplacementsFilePath( |
| 1422 | std::string const& directory, cmSourceFile const& source, |
| 1423 | std::string const& config) const |
no test coverage detected