| 1205 | fileExt == ".tbd"_s || fileExt.empty()); |
| 1206 | } |
| 1207 | bool IsLibraryType(std::string const& fileType) |
| 1208 | { |
| 1209 | return (fileType == "wrapper.framework"_s || |
| 1210 | fileType == "wrapper.xcframework"_s || fileType == "archive.ar"_s || |
| 1211 | fileType == "compiled.mach-o.objfile"_s || |
| 1212 | fileType == "compiled.mach-o.dylib"_s || |
| 1213 | fileType == "compiled.mach-o.executable"_s || |
| 1214 | fileType == "sourcecode.text-based-dylib-definition"_s); |
| 1215 | } |
| 1216 | |
| 1217 | std::string GetDirectoryValueFromFileExtension(std::string const& dirExt) |
| 1218 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…