| 942 | } |
| 943 | |
| 944 | void cmLocalUnixMakefileGenerator3::AppendCustomDepends( |
| 945 | std::vector<std::string>& depends, std::vector<cmCustomCommand> const& ccs) |
| 946 | { |
| 947 | for (cmCustomCommand const& cc : ccs) { |
| 948 | cmCustomCommandGenerator ccg(cc, this->GetConfigName(), this); |
| 949 | this->AppendCustomDepend(depends, ccg); |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | void cmLocalUnixMakefileGenerator3::AppendCustomDepend( |
| 954 | std::vector<std::string>& depends, cmCustomCommandGenerator const& ccg) |
no test coverage detected