| 876 | } |
| 877 | |
| 878 | void cmLocalNinjaGenerator::WriteCustomCommandBuildStatements( |
| 879 | std::string const& fileConfig) |
| 880 | { |
| 881 | for (cmCustomCommand const* customCommand : this->CustomCommands) { |
| 882 | auto i = this->CustomCommandTargets.find(customCommand); |
| 883 | assert(i != this->CustomCommandTargets.end()); |
| 884 | |
| 885 | this->WriteCustomCommandBuildStatement(i->first, i->second, fileConfig); |
| 886 | } |
| 887 | } |
| 888 | |
| 889 | std::string cmLocalNinjaGenerator::MakeCustomLauncher( |
| 890 | cmCustomCommandGenerator const& ccg) |
no test coverage detected