mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2025-02-16 16:41:42 +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):
|
def build(self, state: BuildState):
|
||||||
args = [state.bin_path / 'meson', 'compile']
|
args = [state.bin_path / 'meson', 'compile']
|
||||||
|
|
||||||
|
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