| 766 | } |
| 767 | |
| 768 | bool HandleHasStemCommand(std::vector<std::string> const& args, |
| 769 | cmExecutionStatus& status) |
| 770 | { |
| 771 | return HandleHasItemCommand( |
| 772 | args, status, |
| 773 | [](cmCMakePath const& path) -> bool { return path.HasStem(); }); |
| 774 | } |
| 775 | |
| 776 | bool HandleHasRelativePartCommand(std::vector<std::string> const& args, |
| 777 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…