summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 12:16:54 -0400
committerDavid Robillard <d@drobilla.net>2024-10-06 12:16:54 -0400
commit97bd31ed7b844dd426d0e9f9dfc729ce7b4246eb (patch)
tree4efbf63f42742450d63c0eb7f70636888c4aa204
parent7d98c65702a2f835acb7e4387b08cfdaa6ed0b8a (diff)
downloadsord-97bd31ed7b844dd426d0e9f9dfc729ce7b4246eb.tar.gz
sord-97bd31ed7b844dd426d0e9f9dfc729ce7b4246eb.tar.bz2
sord-97bd31ed7b844dd426d0e9f9dfc729ce7b4246eb.zip
Remove redundant default values for meson options
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 41c5eb9..41a2374 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,17 +1,17 @@
# 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('man', type: 'feature', value: 'enabled', yield: true,
description: 'Install man pages')
-option('tests', type: 'feature', value: 'auto', yield: true,
+option('tests', type: 'feature', yield: true,
description: 'Build tests')
option('title', type: 'string', value: 'Sord',
description: 'Project title')
-option('tools', type: 'feature', value: 'auto', yield: true,
+option('tools', type: 'feature', yield: true,
description: 'Build command line utilities')