MCPcopy Index your code
hub / github.com/Kitware/CMake / IsLibraryType

Function IsLibraryType

Source/cmGlobalXCodeGenerator.cxx:1207–1215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1205 fileExt == ".tbd"_s || fileExt.empty());
1206}
1207bool 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
1217std::string GetDirectoryValueFromFileExtension(std::string const& dirExt)
1218{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…