diff options
author | David Robillard <d@drobilla.net> | 2022-06-28 16:14:45 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-06-28 18:52:19 -0400 |
commit | acb8ea62ac287efcfb50f20cd419b70f6c5a15a9 (patch) | |
tree | 657337f0bf6566b40e3a07002697347b5e35a0d9 /meson_options.txt | |
parent | 58d7fe43076a9825cf1f99d94ce224445ab9e405 (diff) | |
download | zix-acb8ea62ac287efcfb50f20cd419b70f6c5a15a9.tar.gz zix-acb8ea62ac287efcfb50f20cd419b70f6c5a15a9.tar.bz2 zix-acb8ea62ac287efcfb50f20cd419b70f6c5a15a9.zip |
Clean up build configuration
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index 4f5c9b4..ef032fb 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,8 +1,14 @@ option('benchmarks', type: 'feature', value: 'auto', yield: true, description: 'Build benchmarks') +option('checks', type: 'boolean', value: true, yield: true, + description: 'Check for features with the build system') + option('strict', type: 'boolean', value: false, yield: true, description: 'Enable ultra-strict warnings') option('tests', type: 'feature', value: 'auto', yield: true, description: 'Build tests') + +option('posix', type: 'feature', value: 'auto', yield: true, + description: 'Use POSIX system facilities') |