2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
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',
|
|
|
|
'audio_driver_osx.cpp',
|
|
|
|
'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-08 01:01:49 +00:00
|
|
|
prog = env.Program('#bin/godot', files)
|
|
|
|
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)
|