mirror of
https://github.com/NixOS/nix.git
synced 2025-10-14 02:19:32 +08: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.
23 lines
340 B
Meson
23 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)',
|
|
)
|