diff options
Diffstat (limited to 'platform/x11/SCsub')
-rw-r--r-- | platform/x11/SCsub | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/platform/x11/SCsub b/platform/x11/SCsub deleted file mode 100644 index ff4e667b87..0000000000 --- a/platform/x11/SCsub +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python - -Import('env') - -from platform_methods import run_in_subprocess -import platform_x11_builders - -common_x11 = [ - "context_gl_x11.cpp", - "vulkan_context_x11.cpp", - "crash_handler_x11.cpp", - "os_x11.cpp", - "key_mapping_x11.cpp", - "display_server_x11.cpp", - "joypad_linux.cpp", - "detect_prime.cpp" -] - -prog = env.add_program('#bin/godot', ['godot_x11.cpp'] + common_x11) - -if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]: - env.AddPostAction(prog, run_in_subprocess(platform_x11_builders.make_debug_x11)) |