mirror of
https://github.com/godotengine/godot.git
synced 2025-01-12 20:22:49 +08:00
fc8ccd5b8c
Also switch existing shebangs to "better" /usr/bin/env python.
14 lines
200 B
Python
14 lines
200 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_x11=[\
|
|
"context_gl_x11.cpp",\
|
|
"os_x11.cpp",\
|
|
"key_mapping_x11.cpp",\
|
|
"joystick_linux.cpp",\
|
|
]
|
|
|
|
env.Program('#bin/godot',['godot_x11.cpp']+common_x11)
|