mirror of
https://github.com/NixOS/nix.git
synced 2025-11-09 20:16:03 +01:00
36 lines
596 B
Meson
36 lines
596 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(
|
|
'pasta-path',
|
|
type : 'string',
|
|
value : 'pasta',
|
|
description : 'Path to the location of pasta (provided by passt)',
|
|
)
|