9a3a2b03b8
- Removed platform-specific implementations. - Now all semaphores are in-object, unless they need to be conditionally created. - Similarly to `Mutex`, provided a dummy implementation for when `NO_THREADS` is defined. - Similarly to `Mutex`, methods are made `const` for easy use in such contexts. - Language bindings updated: `wait()` and `post()` are now `void`. - Language bindings updated: `try_wait()` added. Bonus: - Rewritten the `#ifdef` in `mutex.h` to meet the code style.
22 lines
533 B
Python
22 lines
533 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
from platform_methods import run_in_subprocess
|
|
import platform_osx_builders
|
|
|
|
files = [
|
|
'crash_handler_osx.mm',
|
|
'os_osx.mm',
|
|
'godot_main_osx.mm',
|
|
'dir_access_osx.mm',
|
|
'joypad_osx.cpp',
|
|
'vulkan_context_osx.mm',
|
|
'context_gl_osx.mm'
|
|
]
|
|
|
|
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))
|
|
|