mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-08 13:12:09 +01:00
15 lines
317 B
Python
15 lines
317 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
|
|
from platform_methods import run_in_subprocess
|
|
import platform_osx_builders
|
|
|
|
files = [
|
|
]
|
|
|
|
prog = env.add_program("#bin/pmlpp", files)
|
|
|
|
if env["debug_symbols"] and env["separate_debug_symbols"]:
|
|
env.AddPostAction(prog, run_in_subprocess(platform_osx_builders.make_debug_osx))
|