bc26d0d6cd
Also drop some unused files. Renamed: - `platform/iphone/sem_iphone.h` -> `semaphore_iphone.h` (same for `osx`) - `platform/uwp/gl_context_egl.h` -> `context_egl_uwp.h` - in `platform/windows`: `context_gl_win.h`, `crash_handler_win.h`, `godot_win.cpp`, `joypad.h` and `key_mapping_win.h` all renamed to use `windows`. Some classes renamed accordingly too. - `EditorExportAndroid` and `EditorExportUWP` renamed to `EditorExportPlatformAndroid` and `EditorExportPlatformUWP` - `power_android` and `power_osx` renamed to `PowerAndroid` and `PowerOSX` - `OSUWP` renamed to `OS_UWP` Dropped: - `platform/windows/ctxgl_procaddr.h`
23 lines
536 B
Python
23 lines
536 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
import os
|
|
from platform_methods import run_in_subprocess
|
|
import platform_osx_builders
|
|
|
|
files = [
|
|
'crash_handler_osx.mm',
|
|
'os_osx.mm',
|
|
'godot_main_osx.mm',
|
|
'semaphore_osx.cpp',
|
|
'dir_access_osx.mm',
|
|
'joypad_osx.cpp',
|
|
'power_osx.cpp',
|
|
]
|
|
|
|
prog = env.add_program('#bin/godot', files)
|
|
|
|
if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
|
|
env.AddPostAction(prog, run_in_subprocess(platform_osx_builders.make_debug_osx))
|
|
|