| 774 | } |
| 775 | |
| 776 | bool HandleHasRelativePartCommand(std::vector<std::string> const& args, |
| 777 | cmExecutionStatus& status) |
| 778 | { |
| 779 | return HandleHasItemCommand( |
| 780 | args, status, |
| 781 | [](cmCMakePath const& path) -> bool { return path.HasRelativePath(); }); |
| 782 | } |
| 783 | |
| 784 | bool HandleHasParentPathCommand(std::vector<std::string> const& args, |
| 785 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…