mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
16 lines
241 B
Python
16 lines
241 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
'os_osx.mm',
|
|
'godot_main_osx.mm',
|
|
'audio_driver_osx.cpp',
|
|
'sem_osx.cpp',
|
|
'dir_access_osx.mm',
|
|
'joypad_osx.cpp',
|
|
'power_osx.cpp',
|
|
]
|
|
|
|
env.Program('#bin/godot', files)
|