1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 22:11:15 +02:00

meson: add options for docs, unit tests and binding

This commit is contained in:
Brian McKenna 2024-11-06 00:14:45 +11:00
parent a9c417dbab
commit f7abc297ca
2 changed files with 30 additions and 13 deletions

13
meson.options Normal file
View file

@ -0,0 +1,13 @@
# vim: filetype=meson
option('doc-gen', type : 'boolean', value : true,
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)',
)