Files
nix/meson.options
Jörg Thalheim 1989dd7bf9 add derivation parser benchmark
the current identified bottlenecks are parseString in derivations.cc and dirOf (because of std::filessystem creation).
2025-07-29 16:51:55 +02:00

30 lines
462 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)',
)