imaginer: add meson

This commit is contained in:
0xMRTT 2023-05-02 00:30:31 +02:00
parent b4a41424eb
commit 3eaa4ceba0
Signed by: 0xMRTT
GPG Key ID: 19C1449A774028BD

20
meson.build Normal file
View File

@ -0,0 +1,20 @@
project('imaginer',
version: '0.1.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,
)