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):
|
2017-12-14 19:41:50 +01:00
|
|
|
if (env["macports_clang"] != 'no'):
|
2017-12-14 15:15:06 +01:00
|
|
|
mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
|
2017-12-14 19:41:50 +01: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 15:15:06 +01:00
|
|
|
else:
|
|
|
|
os.system('dsymutil %s -o %s.dSYM' % (target[0], target[0]))
|
2017-09-13 19:32:24 +02:00
|
|
|
|
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-11-28 21:27:57 +01:00
|
|
|
prog = env.add_program('#bin/godot', files)
|
2017-11-27 14:39:05 +01:00
|
|
|
|
2017-09-13 19:32:24 +02:00
|
|
|
if env["debug_symbols"] == "full" or env["debug_symbols"] == "yes":
|
2017-11-27 14:39:05 +01:00
|
|
|
env.AddPostAction(prog, make_debug)
|
2017-09-13 19:32:24 +02:00
|
|
|
|