Xcode: Add support for mig files
This commit is contained in:
parent
811f6c8252
commit
27eb657d11
|
@ -787,6 +787,8 @@ std::string GetSourcecodeValueFromFileExtension(const std::string& _ext,
|
||||||
sourcecode += ".asm";
|
sourcecode += ".asm";
|
||||||
} else if (ext == "metal") {
|
} else if (ext == "metal") {
|
||||||
sourcecode += ".metal";
|
sourcecode += ".metal";
|
||||||
|
} else if (ext == "mig") {
|
||||||
|
sourcecode += ".mig";
|
||||||
}
|
}
|
||||||
// else
|
// else
|
||||||
// {
|
// {
|
||||||
|
|
Loading…
Reference in New Issue