This commit is contained in:
kramo
2024-07-10 16:13:33 +02:00
parent beda52b575
commit eac6d63010
8 changed files with 61 additions and 43 deletions

View File

@@ -1,7 +1,11 @@
project('cartridges',
version: '2.8.5',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2', 'werror=false', ],
project(
'cartridges',
version: '2.9',
meson_version: '>= 0.59.0',
default_options: [
'warning_level=2',
'werror=false',
],
)
# Translations are broken on Windows for multiple reasons
@@ -23,7 +27,7 @@ profile = get_option('profile')
if profile == 'development'
app_id = 'page.kramo.Cartridges.Devel'
prefix = '/page/kramo/Cartridges/Devel'
elif profile == 'release'
elif profile == 'release'
app_id = 'page.kramo.Cartridges'
prefix = '/page/kramo/Cartridges'
endif
@@ -51,7 +55,7 @@ else
endif
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true,
)