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
|
2020-03-03 14:36:29 +01:00
|
|
|
import platform_linuxbsd_builders
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-05-25 18:26:38 +02:00
|
|
|
common_linuxbsd = [
|
2020-03-03 14:36:29 +01:00
|
|
|
"crash_handler_linuxbsd.cpp",
|
|
|
|
"os_linuxbsd.cpp",
|
|
|
|
"joypad_linux.cpp",
|
2020-04-02 23:46:34 +02:00
|
|
|
"freedesktop_screensaver.cpp",
|
2014-02-10 02:10:30 +01:00
|
|
|
]
|
|
|
|
|
2021-05-25 18:26:38 +02:00
|
|
|
if "x11" in env and env["x11"]:
|
|
|
|
common_linuxbsd += [
|
2020-11-18 19:11:30 +01:00
|
|
|
"gl_manager_x11.cpp",
|
2021-05-25 18:26:38 +02:00
|
|
|
"detect_prime_x11.cpp",
|
|
|
|
"display_server_x11.cpp",
|
|
|
|
"key_mapping_x11.cpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
if "vulkan" in env and env["vulkan"]:
|
|
|
|
common_linuxbsd.append("vulkan_context_x11.cpp")
|
|
|
|
|
2021-02-17 11:28:27 +01:00
|
|
|
if "udev" in env and env["udev"]:
|
2021-05-25 18:26:38 +02:00
|
|
|
common_linuxbsd.append("libudev-so_wrap.c")
|
2021-02-17 11:28:27 +01:00
|
|
|
|
2021-05-25 18:26:38 +02:00
|
|
|
prog = env.add_program("#bin/godot", ["godot_linuxbsd.cpp"] + common_linuxbsd)
|
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"]:
|
2020-03-03 14:36:29 +01:00
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_linuxbsd_builders.make_debug_linuxbsd))
|