Added a crash handler to dump the backtrace on Windows, Linux and OS X

This commit is contained in:
Marcelo Fernandez
2017-09-07 22:01:49 -03:00
parent 06138bf18c
commit 83fe937362
23 changed files with 787 additions and 24 deletions

View File

@ -3,12 +3,13 @@
Import('env')
common_x11 = [\
"context_gl_x11.cpp",\
"os_x11.cpp",\
"key_mapping_x11.cpp",\
"joypad_linux.cpp",\
"power_x11.cpp",\
common_x11 = [
"context_gl_x11.cpp",
"crash_handler_x11.cpp",
"os_x11.cpp",
"key_mapping_x11.cpp",
"joypad_linux.cpp",
"power_x11.cpp",
]
env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11)