1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-15 12:16:40 +08:00

Xcode: Add special case for file type extension map for .xcassets

This commit is contained in:
Gusts Kaksis
2020-08-19 18:43:19 +03:00
parent 7b3d8411a2
commit dc0898205c

View File

@@ -1020,6 +1020,9 @@ std::string GetSourcecodeValueFromFileExtension(
} else if (ext == "dylib") {
keepLastKnownFileType = true;
sourcecode = "compiled.mach-o.dylib";
} else if (ext == "xcassets") {
keepLastKnownFileType = true;
sourcecode = "folder.assetcatalog";
}
// else
// {