1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

Fix meson warning about meson_version 1.1

meson.options requires that we set meson_version to at least 1.1

similar to #12956
This commit is contained in:
Sandro 2025-04-09 15:31:34 +02:00 committed by GitHub
parent e76bbe413e
commit f9a8fdecf5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,8 @@ project('nix-dev-shell', 'cpp',
subproject_dir : 'src', subproject_dir : 'src',
default_options : [ default_options : [
'localstatedir=/nix/var', 'localstatedir=/nix/var',
] ],
meson_version : '>= 1.1'
) )
# Internal Libraries # Internal Libraries