diff options
author | David Robillard <d@drobilla.net> | 2024-10-06 11:31:02 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-06 11:31:02 -0400 |
commit | 9231d6c84e475f6864259f9366193c7886f14319 (patch) | |
tree | 0be96424d692137a56bc361476c8397a54d88179 /meson_options.txt | |
parent | 50c73ad346fb63eb6d057dcc7d1351c95e12e83d (diff) | |
download | zix-9231d6c84e475f6864259f9366193c7886f14319.tar.gz zix-9231d6c84e475f6864259f9366193c7886f14319.tar.bz2 zix-9231d6c84e475f6864259f9366193c7886f14319.zip |
Remove redundant default value for meson options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/meson_options.txt b/meson_options.txt index 3eac738..0ae44d1 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,34 +1,34 @@ # Copyright 2020-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -option('benchmarks', type: 'feature', value: 'auto', yield: true, +option('benchmarks', type: 'feature', yield: true, description: 'Build benchmarks') option('checks', type: 'feature', value: 'enabled', yield: true, description: 'Check for platform-specific features') -option('docs', type: 'feature', value: 'auto', yield: true, +option('docs', type: 'feature', yield: true, description: 'Build documentation') -option('html', type: 'feature', value: 'auto', yield: true, +option('html', type: 'feature', yield: true, description: 'Build paginated HTML documentation') option('lint', type: 'boolean', value: false, yield: true, description: 'Run code quality checks') -option('posix', type: 'feature', value: 'auto', yield: true, +option('posix', type: 'feature', yield: true, description: 'Use POSIX system facilities') -option('singlehtml', type: 'feature', value: 'auto', yield: true, +option('singlehtml', type: 'feature', yield: true, description: 'Build single-page HTML documentation') -option('threads', type: 'feature', value: 'auto', yield: true, +option('threads', type: 'feature', yield: true, description: 'Enable thread support') -option('tests', type: 'feature', value: 'auto', yield: true, +option('tests', type: 'feature', yield: true, description: 'Build tests') -option('tests_cpp', type: 'feature', value: 'auto', yield: true, +option('tests_cpp', type: 'feature', yield: true, description: 'Build C++ standard library comparison tests') option('title', type: 'string', value: 'Zix', |