mirror of
https://github.com/NixOS/nix.git
synced 2026-01-10 16:31:22 +01:00
Pulling in the java into the tests closure for just testing a piece of code for the docs (and the tests actually are wrong, since a correct parser must *reject* those NARs). This is too much of an ask to maintain for zero benefit. I already had to disable it basically everywhere, because it works only on linux. It can be revisited in the future, but considering that it's not exercised anywhere and shouldn't be used anywhere other than a toy example for the docs I think it's best to drop it.
36 lines
617 B
Meson
36 lines
617 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(
|
|
'json-schema-checks',
|
|
type : 'boolean',
|
|
value : true,
|
|
description : 'Check JSON schema validity of schemas and examples (requires jv)',
|
|
)
|