diff options
author | David Robillard <d@drobilla.net> | 2024-10-06 12:12:28 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-06 12:12:28 -0400 |
commit | 1504b2c784a4305da67a74f496b2ddb8f192b3bd (patch) | |
tree | 00702839a91c99f1f34d0f91cb9788a547225666 /meson_options.txt | |
parent | 319715654fdc42bcb8d0a5b6c781a5973b157269 (diff) | |
download | drobillad-1504b2c784a4305da67a74f496b2ddb8f192b3bd.tar.gz drobillad-1504b2c784a4305da67a74f496b2ddb8f192b3bd.tar.bz2 drobillad-1504b2c784a4305da67a74f496b2ddb8f192b3bd.zip |
Remove redundant default values for meson options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/meson_options.txt b/meson_options.txt index a5c3a32..11ef809 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -4,16 +4,16 @@ option('checks', type: 'feature', value: 'enabled', yield: true, description: 'Check for platform-specific features') -option('docs', type: 'feature', value: 'auto', +option('docs', type: 'feature', description: 'Build documentation') -option('ganv', type: 'feature', value: 'auto', +option('ganv', type: 'feature', description: 'Build ganv') -option('ingen', type: 'feature', value: 'auto', +option('ingen', type: 'feature', description: 'Build ingen') -option('jalv', type: 'feature', value: 'auto', +option('jalv', type: 'feature', description: 'Build jalv') option('lint', type: 'boolean', value: false, yield: true, @@ -22,17 +22,17 @@ option('lint', type: 'boolean', value: false, yield: true, option('lv2dir', type: 'string', value: '', yield: true, description: 'LV2 bundle installation directory') -option('lv2kit', type: 'feature', value: 'auto', +option('lv2kit', type: 'feature', description: 'Build lv2kit') -option('patchage', type: 'feature', value: 'auto', +option('patchage', type: 'feature', description: 'Build patchage') -option('plugins', type: 'feature', value: 'auto', +option('plugins', type: 'feature', description: 'Build LV2 plugins') -option('raul', type: 'feature', value: 'auto', +option('raul', type: 'feature', description: 'Build raul') -option('tests', type: 'feature', value: 'auto', yield: true, +option('tests', type: 'feature', yield: true, description: 'Build tests') |