Merge pull request #4192 from eli-schwartz/meson-minimum-version

meson: specify minimum required version
This commit is contained in:
Mathieu Comandon 2022-04-11 14:10:22 -07:00 committed by GitHub
commit 7c0f4f0e83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,7 @@
project(
'lutris',
license: 'GPL-3.0-or-later'
license: 'GPL-3.0-or-later',
meson_version: '>=0.46.0',
)
# Find Python installation
@ -24,7 +25,6 @@ configure_file(
input: 'optional_settings.py.in',
output: 'optional_settings.py',
configuration: config,
install: true,
install_dir: lutrisdir,
)

View file

@ -2,5 +2,6 @@ i18n = import('i18n')
i18n.gettext(
'lutris',
args: '--from-code=UTF-8',
preset: 'glib',
)