mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
21 lines
467 B
Python
21 lines
467 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",
|
|
"pandemonium_main_osx.mm",
|
|
"dir_access_osx.mm",
|
|
"joypad_osx.cpp",
|
|
"power_osx.cpp",
|
|
]
|
|
|
|
prog = env.add_program("#bin/pandemonium", files)
|
|
|
|
if env["debug_symbols"] and env["separate_debug_symbols"]:
|
|
env.AddPostAction(prog, run_in_subprocess(platform_osx_builders.make_debug_osx))
|