aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt16
1 files changed, 11 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index faab87a..571a640 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,18 +1,21 @@
-# Copyright 2021-2023 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',
+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')