From b549875b68bc13e7af6dc436763027fc6e74ca8b Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 28 Mar 2014 23:42:01 +0200 Subject: Finally can generate an entire xcodeproj file. Next up: debugging it to work. --- build.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.py') 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 -- cgit v1.1