diff options
author | David Robillard <d@drobilla.net> | 2024-10-06 12:17:30 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-06 12:17:30 -0400 |
commit | a634d85dc022abb8e02368ec96c55f77b3a32842 (patch) | |
tree | 5f2ec010896c40fc010f3ad46fc7a287f64798b7 | |
parent | 834ba6b9f7843cf29db69d9cbe567982e9a6e357 (diff) | |
download | sratom-a634d85dc022abb8e02368ec96c55f77b3a32842.tar.gz sratom-a634d85dc022abb8e02368ec96c55f77b3a32842.tar.bz2 sratom-a634d85dc022abb8e02368ec96c55f77b3a32842.zip |
Remove redundant default values for meson options
-rw-r--r-- | meson_options.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt index a9a8b0c..dbab79e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,16 +1,16 @@ # Copyright 2021-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -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('singlehtml', type: 'feature', value: 'auto', yield: true, +option('singlehtml', type: 'feature', yield: true, description: 'Build single-page HTML documentation') -option('tests', type: 'feature', value: 'auto', yield: true, +option('tests', type: 'feature', yield: true, description: 'Build tests') option('title', type: 'string', value: 'Sratom', |