Skip to content

Commit 39b1acd

Browse files
committed
[meson] feat: show host machine system and python version in build config summary
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
1 parent 6f2a2ea commit 39b1acd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

meson.build

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ project(
1010
meson_version: '>=0.64.0'
1111
)
1212

13-
message('Host machine system:', host_machine.system())
14-
1513
cpp = meson.get_compiler('cpp')
1614

1715
# Jack API (portable)
@@ -91,11 +89,12 @@ if not get_option('wheel')
9189
endif
9290

9391
summary({
92+
'Host machine system': host_machine.system(),
93+
'Python version': python.language_version(),
9494
'Debug messages (verbose)': get_option('verbose'),
9595
'Build for wheel': get_option('wheel'),
9696
'JACK support': jack_support,
9797
'ALSA support': alsa_support,
9898
'CoreMIDI support': coremidi_support,
9999
'Window MM support': winmm_support,
100100
}, section: 'Configuration')
101-

0 commit comments

Comments
 (0)