Generation
| 495 | |
| 496 | // Generation |
| 497 | cmCMakePath Normal() const |
| 498 | { |
| 499 | auto path = this->Path.lexically_normal(); |
| 500 | // filesystem::path:lexically_normal use preferred_separator ('\') on |
| 501 | // Windows) so convert back to '/' |
| 502 | return path.generic_string(); |
| 503 | } |
| 504 | |
| 505 | cmCMakePath Relative(cmCMakePath const& base) const |
| 506 | { |
no test coverage detected