mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-21 19:41:15 +00:00
aedi: output proper action name when building or generating from directory under source control
This commit is contained in:
parent
ff8cc7b971
commit
81b9e372d3
1 changed files with 2 additions and 1 deletions
|
@ -156,7 +156,8 @@ class Builder(object):
|
|||
self._create_prefix_directory()
|
||||
|
||||
if version := state.source_version():
|
||||
print(f'Building {version}')
|
||||
action = 'Generating' if state.xcode else 'Building'
|
||||
print(f'{action} {version}')
|
||||
|
||||
if target.multi_platform and not state.xcode:
|
||||
self._build_multiple_platforms(target)
|
||||
|
|
Loading…
Reference in a new issue