2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-09-13 19:32:24 +02:00
|
|
|
import os
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
2017-09-13 19:32:24 +02:00
|
|
|
def make_debug(target, source, env):
|
|
|
|
os.system('dsymutil %s -o %s.dSYM' % (target[0], target[0]))
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
files = [
|
2017-09-08 03:01:49 +02:00
|
|
|
'crash_handler_osx.mm',
|
2016-10-30 18:44:57 +01:00
|
|
|
'os_osx.mm',
|
|
|
|
'godot_main_osx.mm',
|
|
|
|
'sem_osx.cpp',
|
|
|
|
'dir_access_osx.mm',
|
2017-01-08 21:29:57 +01:00
|
|
|
'joypad_osx.cpp',
|
2016-07-23 13:15:55 +02:00
|
|
|
'power_osx.cpp',
|
2016-10-30 18:44:57 +01:00
|
|
|
]
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-09-13 19:32:24 +02:00
|
|
|
binary = env.Program('#bin/godot', files)
|
|
|
|
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
|
|
|
env.AddPostAction(binary, make_debug)
|
|
|
|
|