A few types for xcodeproj.
This commit is contained in:
parent
c1c603f804
commit
a715eac537
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue