mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-10 14:41:43 +00:00
wip
[skip ci]
This commit is contained in:
parent
5bf8771a4a
commit
068c08ec25
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)
|
||||
|
||||
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)
|
||||
|
||||
def post_build(self, state: BuildState):
|
||||
|
|
Loading…
Reference in a new issue