97c8508f5e
Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
27 lines
676 B
Python
27 lines
676 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
common_haiku = [
|
|
'os_haiku.cpp',
|
|
'context_gl_haiku.cpp',
|
|
'haiku_application.cpp',
|
|
'haiku_direct_window.cpp',
|
|
'haiku_gl_view.cpp',
|
|
'key_mapping_haiku.cpp',
|
|
'audio_driver_media_kit.cpp'
|
|
]
|
|
|
|
target = env.Program(
|
|
'#bin/godot',
|
|
['godot_haiku.cpp'] + common_haiku
|
|
)
|
|
|
|
command = env.Command('#bin/godot.rsrc', '#platform/haiku/godot.rdef',
|
|
['rc -o $TARGET $SOURCE'])
|
|
|
|
def addResourcesAction(target = None, source = None, env = None):
|
|
return env.Execute('xres -o ' + File(target)[0].path + ' bin/godot.rsrc')
|
|
|
|
env.AddPostAction(target, addResourcesAction)
|
|
env.Depends(target, command)
|