aedi: handle verbose mode in meson base target

This commit is contained in:
alexey.lysiuk 2023-03-28 13:23:08 +03:00
parent 845f0fe19a
commit 679396ec34

View file

@ -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):