| 734 | } |
| 735 | |
| 736 | bool HandleHasRootDirectoryCommand(std::vector<std::string> const& args, |
| 737 | cmExecutionStatus& status) |
| 738 | { |
| 739 | return HandleHasItemCommand( |
| 740 | args, status, |
| 741 | [](cmCMakePath const& path) -> bool { return path.HasRootDirectory(); }); |
| 742 | } |
| 743 | |
| 744 | bool HandleHasRootPathCommand(std::vector<std::string> const& args, |
| 745 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…