94103c0c02
Done: - X11, server (tested) - Windows (developed, would be nice to retest) - OSX (not tested) Prepared (not developed): - Android (code is here, but may not compile) - iphone - winrt - bb10 - haiku - javascript
16 lines
269 B
Python
16 lines
269 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'os_osx.mm',
|
|
'godot_main_osx.mm',
|
|
'audio_driver_osx.cpp',
|
|
'sem_osx.cpp',
|
|
# 'context_gl_osx.cpp',
|
|
'dir_access_osx.mm',
|
|
'joypad_osx.cpp',
|
|
'power_osx.cpp',
|
|
]
|
|
|
|
env.Program('#bin/godot', files)
|