| 542 | } |
| 543 | |
| 544 | bool HandleAbsolutePathCommand(std::vector<std::string> const& args, |
| 545 | cmExecutionStatus& status) |
| 546 | { |
| 547 | return HandleTransformPathCommand( |
| 548 | args, status, |
| 549 | [](cmCMakePath const& path, std::string const& base) -> cmCMakePath { |
| 550 | return path.Absolute(base); |
| 551 | }, |
| 552 | true); |
| 553 | } |
| 554 | |
| 555 | bool HandleNativePathCommand(std::vector<std::string> const& args, |
| 556 | cmExecutionStatus& status) |
nothing calls this directly
no test coverage detected
searching dependent graphs…