mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
meson: add the list of tools to summary
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2078>
This commit is contained in:
parent
c39181903e
commit
3e07ce64aa
1 changed files with 13 additions and 2 deletions
13
meson.build
13
meson.build
|
@ -162,7 +162,9 @@ foreach sp : subprojects
|
|||
plugins = subproj.get_variable('plugins', [])
|
||||
all_plugins += plugins
|
||||
all_libraries += subproj.get_variable('libraries', [])
|
||||
if not get_option('tools').disabled()
|
||||
all_tools += subproj.get_variable('gst_tools', {})
|
||||
endif
|
||||
|
||||
orc_update_targets += subproj.get_variable('orc_update_targets', [])
|
||||
|
||||
|
@ -464,5 +466,14 @@ if dotnet_format.found()
|
|||
endif
|
||||
|
||||
summary({
|
||||
'gstreamer-full': building_full,
|
||||
'gstreamer-full library': building_full,
|
||||
}, section: 'Build options', bool_yn: true, list_sep: ' ')
|
||||
|
||||
gst_tools = []
|
||||
foreach tool, data: all_tools
|
||||
gst_tools += tool
|
||||
endforeach
|
||||
|
||||
summary({
|
||||
'Tools': gst_tools,
|
||||
}, section: 'Build options', list_sep: ', ')
|
||||
|
|
Loading…
Reference in a new issue