MCPcopy Create free account
hub / github.com/Kitware/CMake / AnyTargetCommandOutputMatches

Function AnyTargetCommandOutputMatches

Source/cmLocalGenerator.cxx:5059–5066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5057}
5058
5059bool 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
5069namespace detail {

Callers 1

Calls 3

AnyOutputMatchesFunction · 0.85
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…