diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 12 |
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') |