| 963 | } |
| 964 | |
| 965 | void cmLocalUnixMakefileGenerator3::AppendCustomCommands( |
| 966 | std::vector<std::string>& commands, std::vector<cmCustomCommand> const& ccs, |
| 967 | cmGeneratorTarget* target, std::string const& relative) |
| 968 | { |
| 969 | for (cmCustomCommand const& cc : ccs) { |
| 970 | cmCustomCommandGenerator ccg(cc, this->GetConfigName(), this); |
| 971 | this->AppendCustomCommand(commands, ccg, target, relative, true); |
| 972 | } |
| 973 | } |
| 974 | |
| 975 | void cmLocalUnixMakefileGenerator3::AppendCustomCommand( |
| 976 | std::vector<std::string>& commands, cmCustomCommandGenerator const& ccg, |
no test coverage detected