summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-11 18:00:52 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 18:00:52 -0400
commite5e6dfdc53571f1b2cf86f6bd50ff485aaa58336 (patch)
tree264929ad45129864cdd1c67519cea52d61c89a8d
parentf5d21e7bf3d8d7c43be50228551d62c8adab9086 (diff)
downloadganv-e5e6dfdc53571f1b2cf86f6bd50ff485aaa58336.tar.gz
ganv-e5e6dfdc53571f1b2cf86f6bd50ff485aaa58336.tar.bz2
ganv-e5e6dfdc53571f1b2cf86f6bd50ff485aaa58336.zip
Remove redundant default values for meson optionsHEADmain
-rw-r--r--meson_options.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 69ae358..045bc2f 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,23 +1,23 @@
# Copyright 2022-2023 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
-option('fdgl', type: 'feature', value: 'auto', yield: true,
+option('fdgl', type: 'feature', yield: true,
description: 'Build with force-directed graph layout support')
-option('gir', type: 'feature', value: 'auto', yield: true,
+option('gir', type: 'feature', yield: true,
description: 'Build GObject introspection data')
-option('graphviz', type: 'feature', value: 'auto', yield: true,
+option('graphviz', type: 'feature', yield: true,
description: 'Build with graphviz-based layout support')
-option('light', type: 'boolean', value: 'false', yield: true,
+option('light', type: 'boolean', value: false, yield: true,
description: 'Use light-coloured theme')
-option('nls', type: 'feature', value: 'auto', yield: true,
+option('nls', type: 'feature', yield: true,
description: 'Build with native language support')
option('title', type: 'string', value: 'Ganv',
description: 'Project title')
-option('tools', type: 'boolean', value: true, yield: true,
+option('tools', type: 'boolean', yield: true,
description: 'Build command line utilities')