summaryrefslogtreecommitdiff
path: root/platform/server/SCsub
blob: 0788ad75ae16c26e033cd5bae9ed526adfeb3a78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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)