mirror of
https://github.com/Steve-Tech/YAFI.git
synced 2026-04-19 16:50:36 +00:00
21 lines
337 B
Meson
21 lines
337 B
Meson
project('yafi',
|
|
version: '0.6',
|
|
meson_version: '>= 1.0.0',
|
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
|
)
|
|
|
|
i18n = import('i18n')
|
|
gnome = import('gnome')
|
|
|
|
|
|
|
|
|
|
subdir('data')
|
|
subdir('yafi')
|
|
|
|
gnome.post_install(
|
|
glib_compile_schemas: true,
|
|
gtk_update_icon_cache: true,
|
|
update_desktop_database: true,
|
|
)
|