diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index c5719f3..b468923 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,4 @@ -# Copyright 2021-2022 David Robillard <d@drobilla.net> +# Copyright 2021-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC option('cocoa', type: 'feature', value: 'auto', yield: true, @@ -13,9 +13,15 @@ option('gtk2', type: 'feature', value: 'auto', yield: true, option('gtk3', type: 'feature', value: 'auto', yield: true, description : 'Build Gtk3 wrappers') +option('html', type: 'feature', value: 'auto', yield: true, + description: 'Build paginated HTML documentation') + option('qt5', type: 'feature', value: 'auto', yield: true, description : 'Build Qt5 wrappers') +option('singlehtml', type: 'feature', value: 'auto', yield: true, + description: 'Build single-page HTML documentation') + option('tests', type: 'feature', value: 'auto', yield: true, description: 'Build tests') |