From e5e6dfdc53571f1b2cf86f6bd50ff485aaa58336 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 11 Oct 2024 18:00:52 -0400 Subject: Remove redundant default values for meson options --- meson_options.txt | 12 ++++++------ 1 file 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 # 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') -- cgit v1.2.1