A few types for xcodeproj.

This commit is contained in:
Jussi Pakkanen 2014-03-31 21:32:04 +03:00
parent c1c603f804
commit a715eac537
1 changed files with 6 additions and 1 deletions

View File

@ -23,7 +23,12 @@ class XCodeBackend(backends.Backend):
self.output_path_override = self.environment.coredata.buildtype
self.indent = ' '
self.indent_level = 0
self.xcodetypemap = {'c' : 'sourcecode.c.c', 'a' : 'archive.ar'}
self.xcodetypemap = {'c' : 'sourcecode.c.c',
'a' : 'archive.ar',
'cc': 'sourcecode.cpp.cpp',
'cxx' : 'sourcecode.cpp.cpp',
'cpp' : 'sourcecode.cpp.cpp',
'c++' : 'sourcecode.cpp.cpp'}
self.maingroup_id = self.gen_id()
self.all_id = self.gen_id()
self.all_buildconf_id = self.gen_id()