| 407 | |
| 408 | namespace { |
| 409 | bool isSubDirectory(std::string const& a, std::string const& b) |
| 410 | { |
| 411 | return (cmSystemTools::ComparePath(a, b) || |
| 412 | cmSystemTools::IsSubDirectory(a, b)); |
| 413 | } |
| 414 | } |
| 415 | |
| 416 | bool cmExportInstallFileGenerator::CheckInterfaceDirs( |
no outgoing calls
no test coverage detected
searching dependent graphs…