Hide the results_paned container when both script output panels are empty. This prevents the separator and blank space from appearing when opening requests without script output, maximizing response panel space.
22 lines
353 B
Meson
22 lines
353 B
Meson
project('roster',
|
|
version: '0.4.9',
|
|
meson_version: '>= 1.0.0',
|
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
|
)
|
|
|
|
i18n = import('i18n')
|
|
gnome = import('gnome')
|
|
|
|
|
|
|
|
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('po')
|
|
|
|
gnome.post_install(
|
|
glib_compile_schemas: true,
|
|
gtk_update_icon_cache: true,
|
|
update_desktop_database: true,
|
|
)
|