2020-12-11 21:38:18 +03:00
|
|
|
project('curtail',
|
2023-04-05 00:57:57 +03:00
|
|
|
version: '1.7.0',
|
2023-03-21 11:27:39 +03:00
|
|
|
meson_version: '>= 0.59.0',
|
|
|
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
2019-10-03 19:33:49 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
i18n = import('i18n')
|
2023-03-21 13:25:06 +03:00
|
|
|
gnome = import('gnome')
|
|
|
|
|
2023-03-30 13:42:31 +03:00
|
|
|
application_id = 'com.github.huluti.Curtail'
|
2019-10-03 19:33:49 +03:00
|
|
|
|
|
|
|
subdir('data')
|
|
|
|
subdir('src')
|
|
|
|
subdir('po')
|
|
|
|
|
2023-03-21 13:25:06 +03:00
|
|
|
gnome.post_install(
|
|
|
|
glib_compile_schemas: true,
|
|
|
|
gtk_update_icon_cache: true,
|
|
|
|
update_desktop_database: true,
|
|
|
|
)
|