godot/platform/x11/SCsub

15 lines
234 B
Plaintext
Raw Normal View History

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