6784d743f7
Seems to also be able to do exports of some demos I tried.
12 lines
243 B
Python
12 lines
243 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
|
|
common_server = [\
|
|
"os_server.cpp",\
|
|
"#platform/x11/crash_handler_x11.cpp",
|
|
"#platform/x11/power_x11.cpp",
|
|
]
|
|
|
|
prog = env.add_program('#bin/godot_server', ['godot_server.cpp'] + common_server)
|