mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-03-01 22:40:56 +00:00
wip
This commit is contained in:
parent
844ffaefa5
commit
45d10ed326
1 changed files with 5 additions and 1 deletions
|
@ -556,7 +556,11 @@ endian = 'little'
|
||||||
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
||||||
|
|
||||||
def build(self, state: BuildState):
|
def build(self, state: BuildState):
|
||||||
args = ('ninja',)
|
args = ['ninja']
|
||||||
|
|
||||||
|
if state.verbose:
|
||||||
|
args.append('--verbose')
|
||||||
|
|
||||||
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
subprocess.run(args, check=True, cwd=state.build_path, env=state.environment)
|
||||||
|
|
||||||
def post_build(self, state: BuildState):
|
def post_build(self, state: BuildState):
|
||||||
|
|
Loading…
Reference in a new issue