1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00
nix/meson.options
Sergei Zimmerman 93a42a5971
flake: Add meson formatter
This adds a meson.format file that mostly mirrors the projects
meson style and a pre-commit hook to enforce this style.
Some low-diff files are formatted.
2025-06-11 22:08:03 +00:00

22 lines
340 B
Meson

# vim: filetype=meson
option(
'doc-gen',
type : 'boolean',
value : false,
description : 'Generate documentation',
)
option(
'unit-tests',
type : 'boolean',
value : true,
description : 'Build unit tests',
)
option(
'bindings',
type : 'boolean',
value : true,
description : 'Build language bindings (e.g. Perl)',
)