2022-03-15 13:29:32 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import platform_x11_builders
|
|
|
|
|
|
|
|
common_x11 = [
|
|
|
|
"context_gl_x11.cpp",
|
|
|
|
"crash_handler_x11.cpp",
|
|
|
|
"os_x11.cpp",
|
|
|
|
"key_mapping_x11.cpp",
|
|
|
|
"joypad_linux.cpp",
|
|
|
|
"power_x11.cpp",
|
|
|
|
"detect_prime.cpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
if "udev" in env and env["udev"]:
|
|
|
|
common_x11.append("libudev-so_wrap.c")
|
|
|
|
|
2022-05-23 14:02:12 +02:00
|
|
|
if "speechd" in env and env["speechd"]:
|
|
|
|
common_x11.append(["speechd-so_wrap.c", "tts_linux.cpp"])
|
|
|
|
|
2022-03-23 20:46:05 +01:00
|
|
|
prog = env.add_program("#bin/pandemonium", ["pandemonium_x11.cpp"] + common_x11)
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
if env["debug_symbols"] and env["separate_debug_symbols"]:
|
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_x11_builders.make_debug_x11))
|