diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-31 21:32:04 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-31 21:32:04 +0300 |
| commit | a715eac537a1c1b2466db9940d71b1a0e213923c (patch) | |
| tree | 43802f3b3aaf08c84a1343dc1e0ab42e5a2e8154 /xcodebackend.py | |
| parent | c1c603f80413b6e45a3956011d9b0be2562eaad3 (diff) | |
| download | meson-a715eac537a1c1b2466db9940d71b1a0e213923c.tar.gz | |
A few types for xcodeproj.
Diffstat (limited to 'xcodebackend.py')
| -rw-r--r-- | xcodebackend.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/xcodebackend.py b/xcodebackend.py index a360a224f..4ab6e216b 100644 --- a/xcodebackend.py +++ b/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() |
