You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
415 B
Meson
21 lines
415 B
Meson
2 years ago
|
project('pm.mirko.UbuntuSmoother',
|
||
|
version: '0.0.1',
|
||
|
meson_version: '>= 0.59.0',
|
||
|
default_options: [ 'warning_level=2',
|
||
|
'werror=false',
|
||
|
],
|
||
|
)
|
||
|
|
||
|
i18n = import('i18n')
|
||
|
|
||
|
gnome = import('gnome')
|
||
|
|
||
|
subdir('data')
|
||
|
subdir('ubuntu_smoother')
|
||
|
subdir('po')
|
||
|
|
||
|
gnome.post_install(
|
||
|
glib_compile_schemas: true,
|
||
|
gtk_update_icon_cache: true,
|
||
|
update_desktop_database: true,
|
||
|
)
|