| 5057 | } |
| 5058 | |
| 5059 | bool AnyTargetCommandOutputMatches( |
| 5060 | std::string const& name, std::vector<cmCustomCommand> const& commands) |
| 5061 | { |
| 5062 | return std::any_of(commands.begin(), commands.end(), |
| 5063 | [&name](cmCustomCommand const& command) -> bool { |
| 5064 | return AnyOutputMatches(name, command.GetByproducts()); |
| 5065 | }); |
| 5066 | } |
| 5067 | } |
| 5068 | |
| 5069 | namespace detail { |
no test coverage detected
searching dependent graphs…