| 425 | } |
| 426 | |
| 427 | std::string cmCustomCommandGenerator::GetDepfile() const |
| 428 | { |
| 429 | auto const& depfile = this->CC->GetDepfile(); |
| 430 | if (depfile.empty()) { |
| 431 | return ""; |
| 432 | } |
| 433 | |
| 434 | cmGeneratorExpression ge(*this->LG->GetCMakeInstance(), |
| 435 | this->CC->GetBacktrace()); |
| 436 | return EvaluateDepfile(depfile, ge, this->LG, this->OutputConfig); |
| 437 | } |
| 438 | |
| 439 | std::string cmCustomCommandGenerator::GetFullDepfile() const |
| 440 | { |
no test coverage detected