2014-02-09 22:10:30 -03:00
|
|
|
Import('env')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
common_x11=[\
|
|
|
|
|
"context_gl_x11.cpp",\
|
|
|
|
|
"os_x11.cpp",\
|
|
|
|
|
"key_mapping_x11.cpp",\
|
|
|
|
|
]
|
|
|
|
|
|
2014-02-19 18:09:52 -03:00
|
|
|
env.Program('#bin/godot',['godot_x11.cpp']+common_x11)
|
2014-02-20 23:01:44 -03:00
|
|
|
if env['target'] == "release":
|
|
|
|
|
env.Command('#bin/godot_rel', '#bin/godot', Copy('bin/godot_rel', 'bin/godot'))
|