| 726 | } |
| 727 | |
| 728 | bool HandleHasRootNameCommand(std::vector<std::string> const& args, |
| 729 | cmExecutionStatus& status) |
| 730 | { |
| 731 | return HandleHasItemCommand( |
| 732 | args, status, |
| 733 | [](cmCMakePath const& path) -> bool { return path.HasRootName(); }); |
| 734 | } |
| 735 | |
| 736 | bool HandleHasRootDirectoryCommand(std::vector<std::string> const& args, |
| 737 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…