2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
2018-09-28 13:29:52 +02:00
|
|
|
import os
|
2018-03-17 23:23:55 +01:00
|
|
|
from platform_methods import run_in_subprocess
|
|
|
|
import platform_x11_builders
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-09-08 03:01:49 +02:00
|
|
|
common_x11 = [
|
|
|
|
"context_gl_x11.cpp",
|
|
|
|
"crash_handler_x11.cpp",
|
|
|
|
"os_x11.cpp",
|
|
|
|
"key_mapping_x11.cpp",
|
|
|
|
"joypad_linux.cpp",
|
|
|
|
"power_x11.cpp",
|
2019-01-27 23:31:38 +01:00
|
|
|
"detect_prime.cpp"
|
2014-02-10 02:10:30 +01:00
|
|
|
]
|
|
|
|
|
2017-11-28 21:27:57 +01:00
|
|
|
prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|
2017-11-27 14:39:05 +01:00
|
|
|
|
2018-01-26 20:46:56 +01:00
|
|
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
2018-03-17 23:23:55 +01:00
|
|
|
env.AddPostAction(prog, run_in_subprocess(platform_x11_builders.make_debug_x11))
|