| 468 | } |
| 469 | |
| 470 | std::string cmCustomCommandGenerator::GetInternalDepfile() const |
| 471 | { |
| 472 | std::string depfile = this->GetFullDepfile(); |
| 473 | if (depfile.empty()) { |
| 474 | return ""; |
| 475 | } |
| 476 | |
| 477 | if (this->ComputeInternalDepfile) { |
| 478 | return this->ComputeInternalDepfile(this->OutputConfig, depfile); |
| 479 | } |
| 480 | return this->GetInternalDepfileName(this->OutputConfig, depfile); |
| 481 | } |
| 482 | |
| 483 | cm::optional<std::string> cmCustomCommandGenerator::GetComment() const |
| 484 | { |
no test coverage detected