2
0
mirror of https://github.com/NixOS/nix.git synced 2025-05-11 09:49:48 +00:00
nix/meson.options
Eelco Dolstra 850ccb72cc Don't build the API docs in the devshell
The API docs build is extremely noisy () and probably not many
people care about it anyway. Also, they get rebuild on *every* ninja
invocation which is generally a waste of time.

Of course, you can still build the docs via `nix build
.#nix-{internal,external}-api-docs`, which is pretty fast.
2024-11-12 20:18:33 +01:00

14 lines
319 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)',
)