-
Notifications
You must be signed in to change notification settings - Fork 61
/
meson_options.txt
109 lines (103 loc) · 2.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
option(
'plugin_path',
type: 'string',
description: 'Default installation path for loadable plug-ins'
)
option(
'platforms',
type: 'array',
value: ['drm', 'headless', 'wayland'],
choices: ['drm', 'headless', 'wayland', 'gtk4', 'x11'],
description: 'platform plug-ins to build'
)
option(
'programs',
type: 'boolean',
value: true,
description: 'build and install programs (cog, cogctl)'
)
option(
'examples',
type: 'boolean',
value: true,
description: 'build example programs'
)
option(
'wpe_api',
type: 'combo',
value: 'auto',
choices: ['auto', '1.0', '1.1', '2.0'],
description: 'WPE WebKit API to target (1.0 = soup2, 1.1/2.0 = soup3)'
)
# Features supported in more than one platform
option(
'libportal',
type: 'feature',
value: 'enabled',
description: 'Use libportal to provide file picker dialogs'
)
option(
'libmanette',
type: 'feature',
value: 'auto',
description: 'Use libmanette to support gamepads'
)
# Wayland platform-specific features
option(
'wayland_weston_direct_display',
type: 'boolean',
value: false,
description: 'Build direct-display support in the Wayland platform plug-in'
)
option(
'wayland_weston_content_protection',
type: 'boolean',
value: false,
description: 'Build content-protection support in the Wayland platform plug-in'
)
# X11 platform-specifig features
option(
'x11_keyboard',
type: 'array',
value: ['xkb'],
choices: ['xkb', 'xcb-keysyms'],
description: 'Keyboard handler (xkb recommended)',
)
# Additional cog/cogctl options
option(
'cog_appid',
type: 'string',
value: 'com.igalia.Cog',
description: 'Default GApplication unique identifier for Cog'
)
option(
'cog_home_uri',
type: 'string',
description: 'Default home URI loaded by Cog at startup'
)
option(
'cog_dbus_control',
type: 'combo',
value: 'user',
choices: ['user', 'system'],
description: 'Bus on which to expose the Cog remote control interface'
)
option(
'cog_dbus_system_owner',
type: 'string',
value: '',
description: 'Additional user allowed to own the well-known name on the system bus'
)
# Documentation
option(
'documentation',
type: 'boolean',
value: false,
description: 'Build the documentation'
)
option(
'manpages',
type: 'boolean',
value: true,
description: 'Install man(1) pages for built programs'
)