Explorar el Código

Merge topic 'xcode-hh-files'

8f0a70e Xcode: Recognize .hh as C++ (#11307)
David Cole hace 15 años
padre
commit
9e6eb7c8b6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/cmGlobalXCodeGenerator.cxx

+ 1 - 1
Source/cmGlobalXCodeGenerator.cxx

@@ -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";
     }