| 750 | } |
| 751 | |
| 752 | bool HandleHasFilenameCommand(std::vector<std::string> const& args, |
| 753 | cmExecutionStatus& status) |
| 754 | { |
| 755 | return HandleHasItemCommand( |
| 756 | args, status, |
| 757 | [](cmCMakePath const& path) -> bool { return path.HasFileName(); }); |
| 758 | } |
| 759 | |
| 760 | bool HandleHasExtensionCommand(std::vector<std::string> const& args, |
| 761 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…