| 742 | } |
| 743 | |
| 744 | bool HandleHasRootPathCommand(std::vector<std::string> const& args, |
| 745 | cmExecutionStatus& status) |
| 746 | { |
| 747 | return HandleHasItemCommand( |
| 748 | args, status, |
| 749 | [](cmCMakePath const& path) -> bool { return path.HasRootPath(); }); |
| 750 | } |
| 751 | |
| 752 | bool HandleHasFilenameCommand(std::vector<std::string> const& args, |
| 753 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…