1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00
Files
godot/platform/server/SCsub
Rémi Verschelde fc8ccd5b8c SCsub: Add python shebang as a hint for syntax highlighting
Also switch existing shebangs to "better" /usr/bin/env python.
2016-10-17 20:10:46 +02:00

11 lines
146 B
Python

#!/usr/bin/env python
Import('env')
common_server=[\
"os_server.cpp",\
]
env.Program('#bin/godot_server',['godot_server.cpp']+common_server)