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