diff options
author | David Robillard <d@drobilla.net> | 2024-10-06 13:23:06 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-06 13:23:06 -0400 |
commit | be34b0b08bd2d007ff7f40aef88071796eba3c6a (patch) | |
tree | 5c52ba96621743ece1c61f8d6454f5ee7a4b884a /meson_options.txt | |
parent | 70e5ebad012d13ff3443b0a5f7fb402ee3212fcb (diff) | |
download | lv2-be34b0b08bd2d007ff7f40aef88071796eba3c6a.tar.xz |
Remove redundant default values for meson options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt index 0a8c145..2661999 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,7 +1,7 @@ # Copyright 2021-2022 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('lint', type: 'boolean', value: false, yield: true, @@ -16,10 +16,10 @@ option('old_headers', type: 'boolean', value: true, yield: true, option('online_docs', type: 'boolean', value: false, yield: true, description: 'Build documentation for online hosting') -option('plugins', type: 'feature', value: 'auto', yield: true, +option('plugins', type: 'feature', yield: true, description: 'Build example plugins') -option('tests', type: 'feature', value: 'auto', yield: true, +option('tests', type: 'feature', yield: true, description: 'Build tests') option('title', type: 'string', value: 'LV2', |