diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-28 23:42:01 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-28 23:42:01 +0200 |
commit | b549875b68bc13e7af6dc436763027fc6e74ca8b (patch) | |
tree | 5e6f52ee214b67adfc3590b805aadaabf9659bef /build.py | |
parent | 6f5a16176fdcc30c00b816ddb10933db422b65c0 (diff) | |
download | meson-b549875b68bc13e7af6dc436763027fc6e74ca8b.zip meson-b549875b68bc13e7af6dc436763027fc6e74ca8b.tar.gz meson-b549875b68bc13e7af6dc436763027fc6e74ca8b.tar.bz2 |
Finally can generate an entire xcodeproj file. Next up: debugging it to work.
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -477,6 +477,8 @@ class GeneratedList(): class Executable(BuildTarget): def __init__(self, name, subdir, is_cross, sources, objects, environment, kwargs): super().__init__(name, subdir, is_cross, sources, objects, environment, kwargs) + self.prefix = '' + self.suffix = environment.get_exe_suffix() suffix = environment.get_exe_suffix() if suffix != '': self.filename = self.name + '.' + suffix |