2016-10-17 06:50:25 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-03-17 22:23:55 +00:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import platform_x11_builders
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-09-08 01:01:49 +00:00
|
|
|
common_x11 = [
|
|
|
|
"context_gl_x11.cpp",
|
|
|
|
"crash_handler_x11.cpp",
|
|
|
|
"os_x11.cpp",
|
|
|
|
"key_mapping_x11.cpp",
|
|
|
|
"joypad_linux.cpp",
|
|
|
|
"power_x11.cpp",
|
2020-03-30 06:28:32 +00:00
|
|
|
"detect_prime.cpp",
|
2014-02-10 01:10:30 +00:00
|
|
|
]
|
|
|
|
|
2021-02-17 10:28:27 +00:00
|
|
|
if "udev" in env and env["udev"]:
|
|
|
|
common_x11.append("libudev-so_wrap.c")
|
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
prog = env.add_program("#bin/godot", ["godot_x11.cpp"] + common_x11)
|
2017-11-27 13:39:05 +00:00
|
|
|
|
2021-02-08 07:52:21 +00:00
|
|
|
if env["debug_symbols"] and env["separate_debug_symbols"]:
|
2018-03-17 22:23:55 +00:00
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_x11_builders.make_debug_x11))
|