1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 20:16:03 +01:00
nix/meson.options
Jörg Thalheim b2c35b45d2 pasta: wip
TODO: add original authors as commit authors
2025-09-17 23:19:55 +02:00

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)',
)