diff options
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt index 9e699a8..571a640 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,18 +1,21 @@ -# Copyright 2021-2024 David Robillard <d@drobilla.net> +# Copyright 2021-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC +option('bindings_cpp', type: 'feature', yield: true, + description: 'Build C++ bindings') + option('cairo', type: 'feature', description: 'Enable support for the Cairo graphics API') -option('examples', type: 'feature', yield: true, - description: 'Build example programs') - option('docs', type: 'feature', yield: true, description: 'Build documentation') option('docs_cpp', type: 'boolean', value: false, description: 'Attempt to build C++ documentation for development') +option('examples', type: 'feature', yield: true, + description: 'Build example programs') + option('lint', type: 'boolean', value: false, yield: true, description: 'Run code quality checks') @@ -28,6 +31,9 @@ option('tests', type: 'feature', yield: true, option('vulkan', type: 'feature', description: 'Enable support for the Vulkan graphics API') +option('win_wchar', type: 'feature', yield: true, + description: 'Use UTF-16 wchar_t and UNICODE with Windows API') + option('xcursor', type: 'feature', description: 'Support changing the cursor on X11') |