| 409 | } |
| 410 | |
| 411 | void cmLocalNinjaGenerator::AppendCustomCommandDeps( |
| 412 | cmCustomCommandGenerator const& ccg, cmNinjaDeps& ninjaDeps, |
| 413 | std::string const& config) |
| 414 | { |
| 415 | for (std::string const& i : ccg.GetDepends()) { |
| 416 | std::string dep; |
| 417 | if (this->GetRealDependency(i, config, dep)) { |
| 418 | ninjaDeps.push_back( |
| 419 | this->GetGlobalNinjaGenerator()->ConvertToNinjaPath(dep)); |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | std::string cmLocalNinjaGenerator::WriteCommandScript( |
| 425 | std::vector<std::string> const& cmdLines, std::string const& outputConfig, |
no test coverage detected