mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
aedi: disable verbose output by default when building moltenvk dependencies
This commit is contained in:
parent
adaa3907f5
commit
b42fa7b442
1 changed files with 3 additions and 1 deletions
|
@ -300,7 +300,9 @@ class MoltenVKTarget(MakeTarget):
|
|||
super().configure(state)
|
||||
|
||||
def build(self, state: BuildState):
|
||||
args = ('./fetchDependencies', '--macos', '-v')
|
||||
args = ['./fetchDependencies', '--macos']
|
||||
if state.verbose:
|
||||
args.append('-v')
|
||||
subprocess.check_call(args, cwd=state.build_path)
|
||||
|
||||
super().build(state)
|
||||
|
|
Loading…
Reference in a new issue