mirror of
https://github.com/lutris/lutris
synced 2024-11-05 18:10:49 +00:00
Merge pull request #4192 from eli-schwartz/meson-minimum-version
meson: specify minimum required version
This commit is contained in:
commit
7c0f4f0e83
2 changed files with 3 additions and 2 deletions
|
@ -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,
|
||||
)
|
||||
|
||||
|
|
|
@ -2,5 +2,6 @@ i18n = import('i18n')
|
|||
|
||||
i18n.gettext(
|
||||
'lutris',
|
||||
args: '--from-code=UTF-8',
|
||||
preset: 'glib',
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue