11 lines
179 B
Python
11 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)
|