| 421 | } |
| 422 | |
| 423 | std::string cmNinjaTargetGenerator::GetObjectFilePath( |
| 424 | cmSourceFile const* source, std::string const& config) const |
| 425 | { |
| 426 | std::string const& objectName = this->GeneratorTarget->GetObjectName(source); |
| 427 | return cmStrCat(this->GetObjectFileDir(config), '/', objectName); |
| 428 | } |
| 429 | |
| 430 | std::string cmNinjaTargetGenerator::GetBmiFilePath( |
| 431 | cmSourceFile const* source, std::string const& config) const |
no test coverage detected