forked from dvdhrm/kmscon
-
Notifications
You must be signed in to change notification settings - Fork 26
/
meson.options
44 lines (38 loc) · 1.62 KB
/
meson.options
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('extra_debug', type: 'boolean', value: false,
description: 'Additional non-standard debug options')
option('tests', type: 'boolean', value: true,
description: 'Build unit tests')
option('docs', type: 'feature', value: 'auto',
description: 'Build documentation')
# multi-seat
option('multi_seat', type: 'feature', value: 'auto',
description: 'Multi-seat support with systemd or elogind')
option('elogind', type: 'feature', value: 'disabled',
description: 'Prefer elogind over systemd')
# video backends
option('video_fbdev', type: 'feature', value: 'auto',
description: 'fbdev video backend')
option('video_drm2d', type: 'feature', value: 'auto',
description: 'drm2d video backend')
option('video_drm3d', type: 'feature', value: 'auto',
description: 'drm3d video backend')
# renderers
option('renderer_bbulk', type: 'feature', value: 'auto',
description: 'bbulk renderer')
option('renderer_gltex', type: 'feature', value: 'auto',
description: 'gltex renderer')
option('renderer_pixman', type: 'feature', value: 'auto',
description: 'pixman renderer')
# font backends
option('font_unifont', type: 'feature', value: 'auto',
description: 'unifont font backend')
option('font_pango', type: 'feature', value: 'auto',
description: 'pango font backend')
# kmscon sessions
option('session_dummy', type: 'feature', value: 'auto',
description: 'dummy session')
option('session_terminal', type: 'feature', value: 'auto',
description: 'terminal session')
# terminal options
option('backspace_sends_delete', type: 'boolean', value: false,
description: 'backspace sends ASCII delete (0177) instead of ASCII backspace (010)')