aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2014-03-28 23:42:01 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2014-03-28 23:42:01 +0200
commitb549875b68bc13e7af6dc436763027fc6e74ca8b (patch)
tree5e6f52ee214b67adfc3590b805aadaabf9659bef /build.py
parent6f5a16176fdcc30c00b816ddb10933db422b65c0 (diff)
downloadmeson-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.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.py b/build.py
index 53c1e9a..67a15a2 100644
--- a/build.py
+++ b/build.py
@@ -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