2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
Import("env")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-03-17 23:23:55 +01:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import platform_osx_builders
|
2017-09-13 19:32:24 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
files = [
|
2020-03-30 08:28:32 +02:00
|
|
|
"os_osx.mm",
|
2022-01-26 10:01:27 +01:00
|
|
|
"godot_application.mm",
|
|
|
|
"godot_application_delegate.mm",
|
|
|
|
"crash_handler_osx.mm",
|
|
|
|
"osx_terminal_logger.mm",
|
2020-03-30 08:28:32 +02:00
|
|
|
"display_server_osx.mm",
|
2022-01-26 10:01:27 +01:00
|
|
|
"godot_content_view.mm",
|
|
|
|
"godot_window_delegate.mm",
|
|
|
|
"godot_window.mm",
|
|
|
|
"key_mapping_osx.mm",
|
2020-03-30 08:28:32 +02:00
|
|
|
"godot_main_osx.mm",
|
|
|
|
"dir_access_osx.mm",
|
|
|
|
"joypad_osx.cpp",
|
|
|
|
"vulkan_context_osx.mm",
|
2022-01-26 10:01:27 +01:00
|
|
|
"gl_manager_osx_legacy.mm",
|
2016-10-30 18:44:57 +01:00
|
|
|
]
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
prog = env.add_program("#bin/godot", files)
|
2017-11-27 14:39:05 +01:00
|
|
|
|
2021-02-08 08:52:21 +01:00
|
|
|
if env["debug_symbols"] and env["separate_debug_symbols"]:
|
2018-03-17 23:23:55 +01:00
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_osx_builders.make_debug_osx))
|