mirror of
https://github.com/NixOS/nix.git
synced 2025-10-14 02:19:32 +08:00

the current identified bottlenecks are parseString in derivations.cc and dirOf (because of std::filessystem creation).
30 lines
462 B
Meson
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)',
|
|
)
|