mirror of
https://github.com/NixOS/nix
synced 2025-06-24 05:31:16 +02:00
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.
22 lines
340 B
Meson
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)',
|
|
)
|