godot/platform/x11/SCsub

15 lines
241 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2014-02-10 01:10:30 +00:00
Import('env')
common_x11 = [
"context_gl_x11.cpp",
"crash_handler_x11.cpp",
"os_x11.cpp",
"key_mapping_x11.cpp",
"joystick_linux.cpp",
2014-02-10 01:10:30 +00:00
]
env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11)