diff --git a/NEWS b/NEWS index 119f48ca..cab0d150 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +44.0 +==== +* Bump version + 44.rc ===== * Bump version diff --git a/meson.build b/meson.build index b3f1892b..f3160208 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('gnome-shell-extensions', - version: '44.rc', - meson_version: '>= 0.53.0', + version: '44.0', + meson_version: '>= 0.58.0', license: 'GPL2+' ) @@ -93,7 +93,24 @@ endif subdir('extensions') subdir('po') +gnome.post_install( + glib_compile_schemas: true, +) + meson.add_dist_script('meson/generate-stylesheets.py') meson.add_dist_script('meson/check-version.py', meson.project_version(), 'NEWS') + +summary_options = { + 'extensions': enabled_extensions, + 'classic_mode': get_option('classic_mode'), +} + +summary_dirs = { + 'prefix': get_option('prefix'), + 'datadir': get_option('datadir'), +} + +summary(summary_dirs, section: 'Directories') +summary(summary_options, section: 'Build Options')