A few types for xcodeproj.

pull/15/head
Jussi Pakkanen 11 years ago
parent c1c603f804
commit a715eac537
  1. 7
      xcodebackend.py

@ -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…
Cancel
Save