-
Notifications
You must be signed in to change notification settings - Fork 34
/
meson_options.txt
38 lines (26 loc) · 1.21 KB
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright 2021-2024 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
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('lint', type: 'boolean', value: false, yield: true,
description: 'Run code quality checks')
option('opengl', type: 'feature',
description: 'Enable support for the OpenGL graphics API')
option('stub', type: 'boolean',
description: 'Build stub backend')
option('tests', type: 'feature', yield: true,
description: 'Build tests')
option('vulkan', type: 'feature',
description: 'Enable support for the Vulkan graphics API')
option('xcursor', type: 'feature',
description: 'Support changing the cursor on X11')
option('xrandr', type: 'feature',
description: 'Support accessing the refresh rate on X11')
option('xsync', type: 'feature',
description: 'Support timers on X11')