Files
warehouse/meson.build
heliguy4599 1a96d5f2dc Bump to version 1.0.0
Also edit very minor wording in the readme
2023-09-25 22:31:47 -04:00

21 lines
356 B
Meson

project('warehouse',
version: '1.0.0',
meson_version: '>= 0.62.0',
default_options: [ 'warning_level=2', 'werror=false', ],
)
i18n = import('i18n')
gnome = import('gnome')
subdir('data')
subdir('src')
subdir('po')
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)