| 782 | } |
| 783 | |
| 784 | bool HandleHasParentPathCommand(std::vector<std::string> const& args, |
| 785 | cmExecutionStatus& status) |
| 786 | { |
| 787 | return HandleHasItemCommand( |
| 788 | args, status, |
| 789 | [](cmCMakePath const& path) -> bool { return path.HasParentPath(); }); |
| 790 | } |
| 791 | |
| 792 | bool HandleIsAbsoluteCommand(std::vector<std::string> const& args, |
| 793 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…