1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-12 05:26:02 +01:00
nix/meson.options
2025-11-07 15:15:56 -05:00

43 lines
773 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)',
)
option(
'benchmarks',
type : 'boolean',
value : false,
description : 'Build benchmarks (requires gbenchmark)',
)
option(
'kaitai-struct-checks',
type : 'boolean',
value : true,
description : 'Check the Kaitai Struct specifications (requires Kaitai Struct)',
)
option(
'json-schema-checks',
type : 'boolean',
value : true,
description : 'Check JSON schema validity of schemas and examples (requires jv)',
)