Handle .C extension in Xcode.
This commit is contained in:
parent
e0ab7290f0
commit
12e7b3afcf
|
@ -326,7 +326,10 @@ class XCodeBackend(backends.Backend):
|
||||||
self.generate_regen_info()
|
self.generate_regen_info()
|
||||||
|
|
||||||
def get_xcodetype(self, fname):
|
def get_xcodetype(self, fname):
|
||||||
xcodetype = XCODETYPEMAP.get(fname.split('.')[-1].lower())
|
extension = fname.split('.')[-1]
|
||||||
|
if extension == 'C':
|
||||||
|
extension = 'cpp'
|
||||||
|
xcodetype = XCODETYPEMAP.get(extension.lower())
|
||||||
if not xcodetype:
|
if not xcodetype:
|
||||||
xcodetype = 'sourcecode.unknown'
|
xcodetype = 'sourcecode.unknown'
|
||||||
return xcodetype
|
return xcodetype
|
||||||
|
|
Loading…
Reference in New Issue