2016-10-17 14:50:25 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2017-09-14 01:32:24 +08:00
|
|
|
import os
|
2014-02-10 09:10:30 +08:00
|
|
|
Import('env')
|
|
|
|
|
2017-09-14 01:32:24 +08:00
|
|
|
def make_debug(target, source, env):
|
2017-12-15 02:41:50 +08:00
|
|
|
if (env["macports_clang"] != 'no'):
|
2017-12-14 22:15:06 +08:00
|
|
|
mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
|
2017-12-15 02:41:50 +08:00
|
|
|
mpclangver = env["macports_clang"]
|
|
|
|
os.system(mpprefix + '/libexec/llvm-' + mpclangver + '/bin/llvm-dsymutil %s -o %s.dSYM' % (target[0], target[0]))
|
2017-12-14 22:15:06 +08:00
|
|
|
else:
|
|
|
|
os.system('dsymutil %s -o %s.dSYM' % (target[0], target[0]))
|
2017-09-14 01:32:24 +08:00
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
files = [
|
2017-09-08 09:01:49 +08:00
|
|
|
'crash_handler_osx.mm',
|
2016-10-31 01:44:57 +08:00
|
|
|
'os_osx.mm',
|
|
|
|
'godot_main_osx.mm',
|
|
|
|
'sem_osx.cpp',
|
|
|
|
'dir_access_osx.mm',
|
2017-01-09 04:29:57 +08:00
|
|
|
'joypad_osx.cpp',
|
2016-07-23 19:15:55 +08:00
|
|
|
'power_osx.cpp',
|
2016-10-31 01:44:57 +08:00
|
|
|
]
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-11-29 04:27:57 +08:00
|
|
|
prog = env.add_program('#bin/godot', files)
|
2017-11-27 21:39:05 +08:00
|
|
|
|
2017-09-14 01:32:24 +08:00
|
|
|
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
2017-11-27 21:39:05 +08:00
|
|
|
env.AddPostAction(prog, make_debug)
|
2017-09-14 01:32:24 +08:00
|
|
|
|