mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
aedi: handle verbose mode in meson base target
This commit is contained in:
parent
845f0fe19a
commit
679396ec34
1 changed files with 4 additions and 0 deletions
|
@ -559,6 +559,10 @@ endian = 'little'
|
|||
|
||||
def build(self, state: BuildState):
|
||||
args = [state.bin_path / 'meson', 'compile']
|
||||
|
||||
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