| 758 | } |
| 759 | |
| 760 | bool HandleHasExtensionCommand(std::vector<std::string> const& args, |
| 761 | cmExecutionStatus& status) |
| 762 | { |
| 763 | return HandleHasItemCommand( |
| 764 | args, status, |
| 765 | [](cmCMakePath const& path) -> bool { return path.HasExtension(); }); |
| 766 | } |
| 767 | |
| 768 | bool HandleHasStemCommand(std::vector<std::string> const& args, |
| 769 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…