2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
files = [
|
2017-08-04 00:07:16 +00:00
|
|
|
'crash_handler_osx.mm',
|
2016-11-02 21:26:55 +00:00
|
|
|
'os_osx.mm',
|
|
|
|
'godot_main_osx.mm',
|
|
|
|
'audio_driver_osx.cpp',
|
|
|
|
'sem_osx.cpp',
|
|
|
|
# 'context_gl_osx.cpp',
|
|
|
|
'dir_access_osx.mm',
|
|
|
|
'joystick_osx.cpp',
|
|
|
|
]
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-11-28 20:14:24 +00:00
|
|
|
prog = env.add_program('#bin/godot', files)
|
2017-11-27 13:43:00 +00:00
|
|
|
|
2017-08-04 00:07:16 +00:00
|
|
|
if (env['target'] == "debug" or env['target'] == "release_debug"):
|
|
|
|
# Build the .dSYM file for atos
|
|
|
|
action = "dsymutil " + File(prog)[0].path + " -o " + File(prog)[0].path + ".dSYM"
|
|
|
|
env.AddPostAction(prog, action)
|