mirror of
https://github.com/Huluti/Curtail.git
synced 2024-11-05 06:35:23 +03:00
21 lines
400 B
Meson
21 lines
400 B
Meson
project('curtail',
|
|
version: '1.7.0',
|
|
meson_version: '>= 0.59.0',
|
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
|
)
|
|
|
|
i18n = import('i18n')
|
|
gnome = import('gnome')
|
|
|
|
application_id = 'com.github.huluti.Curtail'
|
|
|
|
subdir('data')
|
|
subdir('src')
|
|
subdir('po')
|
|
|
|
gnome.post_install(
|
|
glib_compile_schemas: true,
|
|
gtk_update_icon_cache: true,
|
|
update_desktop_database: true,
|
|
)
|