| 532 | } |
| 533 | |
| 534 | bool HandleRelativePathCommand(std::vector<std::string> const& args, |
| 535 | cmExecutionStatus& status) |
| 536 | { |
| 537 | return HandleTransformPathCommand( |
| 538 | args, status, |
| 539 | [](cmCMakePath const& path, std::string const& base) -> cmCMakePath { |
| 540 | return path.Relative(base); |
| 541 | }); |
| 542 | } |
| 543 | |
| 544 | bool HandleAbsolutePathCommand(std::vector<std::string> const& args, |
| 545 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…