Merge topic 'xcode-hh-files'

8f0a70e Xcode: Recognize .hh as C++ (#11307)
This commit is contained in:
David Cole 2010-10-19 15:53:54 -04:00 committed by CMake Topic Stage
commit 9e6eb7c8b6
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ cmGlobalXCodeGenerator::CreateXCodeFileReference(cmSourceFile* sf,
sourcecode += ".c.h";
}
else if(ext == "hxx" || ext == "hpp" || ext == "txx"
|| ext == "pch")
|| ext == "pch" || ext == "hh")
{
sourcecode += ".cpp.h";
}