aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 11:38:02 -0400
committerDavid Robillard <d@drobilla.net>2024-10-06 11:39:39 -0400
commita87487c2b21f7527f1f326705c370fcbd751ccc6 (patch)
tree95e10593b6a4c2e873e084c34b7dd89d0be85a7a
parent8138e876cedf396a7dc90409ba70d8f2a5659ecb (diff)
downloadchilbert-a87487c2b21f7527f1f326705c370fcbd751ccc6.tar.gz
chilbert-a87487c2b21f7527f1f326705c370fcbd751ccc6.tar.bz2
chilbert-a87487c2b21f7527f1f326705c370fcbd751ccc6.zip
Remove redundant default values for meson optionsHEADmain
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 6472e14..7a12844 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,11 +1,11 @@
# Copyright 2019-2023 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR GPL-2.0-or-later
-option('benchmarks', type: 'feature', value: 'auto', yield: true,
+option('benchmarks', type: 'feature', yield: true,
description: 'Build benchmarks')
-option('tests', type: 'feature', value: 'auto', yield: true,
+option('tests', type: 'feature', yield: true,
description: 'Build tests')
-option('tools', type: 'feature', value: 'auto', yield: true,
+option('tools', type: 'feature', yield: true,
description: 'Build command line utilities')