Merge topic 'xcode-storyboard-files'

d59ba0c Xcode: Recognize storyboard source files (#13214)
This commit is contained in:
David Cole 2012-05-17 14:59:17 -04:00 committed by CMake Topic Stage
commit 0c03cbabc4
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";