Xcode: Recognize storyboard source files (#13214)

This commit is contained in:
Jan Schaffmeister 2012-05-11 10:32:00 -04:00 committed by Brad King
parent 6218aba37a
commit d59ba0c591
1 changed files with 4 additions and 0 deletions

View File

@ -723,6 +723,10 @@ GetSourcecodeValueFromFileExtension(const std::string& _ext,
{
sourcecode = "file.xib";
}
else if(ext == "storyboard")
{
sourcecode = "file.storyboard";
}
else if(ext == "mm")
{
sourcecode += ".cpp.objcpp";