-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
44 lines (34 loc) · 1.19 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
39
40
41
42
43
44
option('kms',
type: 'feature', value: 'disabled',
description: 'Build DRM/KMS/GBM backend')
option('libseat',
type: 'feature', value: 'disabled',
description: 'Build with libseat support')
option('libinput',
type: 'feature', value: 'disabled',
description: 'Build with libinput support')
option('xcb',
type: 'feature', value: 'disabled',
description : 'Build xcb wrapper api')
option('wayland',
type: 'feature', value: 'disabled',
description: 'Build wayland client API')
option('shaderc',
type: 'feature', value: 'disabled',
description: 'Enable/disable google shaderc')
option('examples',
type: 'boolean', value: false,
description: 'Build examples')
option('tests',
type: 'boolean', value: false,
description: 'Build tests')
option('debugging',
type: 'feature', value: 'disabled',
description: 'Enable debuging')
option('gpu',
type: 'combo', value: 'discrete',
choices: ['integrated', 'discrete', 'cpu'],
description: 'Select VkPhysicalDeviceType to use in examples')
option('docs',
type: 'boolean', value: false,
description: 'Build documentation')