94103c0c02
Done: - X11, server (tested) - Windows (developed, would be nice to retest) - OSX (not tested) Prepared (not developed): - Android (code is here, but may not compile) - iphone - winrt - bb10 - haiku - javascript
14 lines
234 B
Python
14 lines
234 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_x11 = [\
|
|
"context_gl_x11.cpp",\
|
|
"os_x11.cpp",\
|
|
"key_mapping_x11.cpp",\
|
|
"joypad_linux.cpp",\
|
|
"power_x11.cpp",\
|
|
]
|
|
|
|
env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11)
|