initial commit

This commit is contained in:
2025-12-02 16:51:17 +01:00
commit f1434656cd
33 changed files with 6126 additions and 0 deletions

21
meson.build Normal file
View File

@@ -0,0 +1,21 @@
project('gnomeframe',
version: '0.1.0',
meson_version: '>= 1.0.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,
)