blob: 0644ba52eccd33156a8b8e48344b86e13c2d6be7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Import('env')
common_x11=[\
"context_gl_x11.cpp",\
"os_x11.cpp",\
"key_mapping_x11.cpp",\
]
if env["target"]=="release":
env.Program('#bin/godot_rel',['godot_x11.cpp']+common_x11)
else:
env.Program('#bin/godot',['godot_x11.cpp']+common_x11)
|