1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-19 09:55:26 +00:00

build: Add summary

Makes is simpler to figure out how calls is built.

This also bumps the minimum meson version to 1.0.

Part-of: <https://gitlab.gnome.org/GNOME/calls/-/merge_requests/733>
This commit is contained in:
Guido Günther 2024-06-15 08:22:03 +02:00 committed by Marge Bot
parent 93e0c72d9f
commit e29fbf1b07

View file

@ -24,7 +24,7 @@ project(
'c', 'vala',
version: '46.0',
license: 'GPLv3+',
meson_version: '>= 0.56.0',
meson_version: '>= 1.0',
default_options: [
'warning_level=1',
'buildtype=debugoptimized',
@ -140,6 +140,13 @@ add_project_arguments(
language: 'c'
)
summary({
'Build documentation': get_option('gtk_doc'),
'Build manpages': get_option('manpages'),
'Build tests': get_option('tests'),
'Use gstreamers debug API': get_option('gst_debug'),
})
subdir('po')
subdir('src')
subdir('plugins')