mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
10 lines
165 B
Python
10 lines
165 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_server = [\
|
|
"os_server.cpp",\
|
|
]
|
|
|
|
prog = env.add_program('#bin/godot_server', ['godot_server.cpp'] + common_server)
|