You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-03 16:55:53 +00:00
12 lines
179 B
Python
12 lines
179 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_server = [\
|
|
"os_server.cpp",\
|
|
]
|
|
|
|
prog = env.Program('#bin/godot_server', ['godot_server.cpp'] + common_server)
|
|
env.NoCache(prog)
|