blob: 62762c8ede26f55930edfe243eb1aa8bd5cc3496 [file] [log] [blame]
Daniel Stone8011b0f2016-11-24 15:54:51 +00001# This option is not implemented:
2# --with-cairo=[image|gl|glesv2] Which Cairo renderer to use for the clients
3# It is hardcoded to cairo-image for now.
4
5option(
6 'backend-drm',
7 type: 'boolean',
8 value: true,
9 description: 'Weston backend: DRM/KMS'
10)
11option(
12 'backend-drm-screencast-vaapi',
13 type: 'boolean',
14 value: true,
15 description: 'DRM/KMS backend support for VA-API screencasting'
16)
17option(
18 'backend-headless',
19 type: 'boolean',
20 value: true,
21 description: 'Weston backend: headless (testing)'
22)
23option(
24 'backend-rdp',
25 type: 'boolean',
26 value: true,
27 description: 'Weston backend: RDP remote screensharing'
28)
29option(
30 'screenshare',
31 type: 'boolean',
32 value: true,
33 description: 'Compositor: RDP screen-sharing support'
34)
35option(
36 'backend-wayland',
37 type: 'boolean',
38 value: true,
39 description: 'Weston backend: Wayland (nested)'
40)
41option(
42 'backend-x11',
43 type: 'boolean',
44 value: true,
45 description: 'Weston backend: X11 (nested)'
46)
47option(
48 'backend-fbdev',
49 type: 'boolean',
50 value: true,
51 description: 'Weston backend: fbdev'
52)
53option(
54 'backend-default',
55 type: 'combo',
56 choices: [ 'auto', 'drm', 'wayland', 'x11', 'fbdev', 'headless' ],
57 value: 'drm',
58 description: 'Default backend when no parent display server detected'
59)
60
61option(
62 'renderer-gl',
63 type: 'boolean',
64 value: true,
65 description: 'Weston renderer: EGL / OpenGL ES 2.x'
66)
67
68option(
69 'weston-launch',
70 type: 'boolean',
71 value: true,
72 description: 'Weston launcher for systems without logind'
73)
74
75option(
76 'xwayland',
77 type: 'boolean',
78 value: true,
79 description: 'Xwayland: support for X11 clients inside Weston'
80)
81option(
82 'xwayland-path',
83 type: 'string',
84 value: '/usr/bin/Xwayland',
85 description: 'Xwayland: path to installed Xwayland binary'
86)
87
88option(
89 'systemd',
90 type: 'boolean',
91 value: true,
92 description: 'systemd service plugin: state notify, watchdog, socket activation'
93)
94
95option(
96 'remoting',
97 type: 'boolean',
98 value: true,
99 description: 'Virtual remote output with GStreamer on DRM backend'
100)
101
102option(
103 'shell-desktop',
104 type: 'boolean',
105 value: true,
106 description: 'Weston shell UI: traditional desktop'
107)
108option(
109 'shell-fullscreen',
110 type: 'boolean',
111 value: true,
112 description: 'Weston shell UI: fullscreen/kiosk'
113)
114option(
115 'shell-ivi',
116 type: 'boolean',
117 value: true,
118 description: 'Weston shell UI: IVI (automotive)'
119)
120
121option(
122 'desktop-shell-client-default',
123 type: 'string',
124 value: 'weston-desktop-shell',
125 description: 'Weston desktop shell: default helper client selection'
126)
127
128option(
129 'color-management-lcms',
130 type: 'boolean',
131 value: true,
132 description: 'Compositor color management: lcms'
133)
134option(
135 'color-management-colord',
136 type: 'boolean',
137 value: true,
138 description: 'Compositor color management: colord (requires lcms)'
139)
140
141option(
142 'launcher-logind',
143 type: 'boolean',
144 value: true,
145 description: 'Compositor: support systemd-logind D-Bus protocol'
146)
147
148option(
149 'image-jpeg',
150 type: 'boolean',
151 value: true,
152 description: 'JPEG loading support'
153)
154option(
155 'image-webp',
156 type: 'boolean',
157 value: true,
158 description: 'WebP loading support'
159)
160
161option(
162 'tools',
163 type: 'array',
164 choices: [ 'calibrator', 'debug', 'info', 'terminal', 'touch-calibrator' ],
165 description: 'List of accessory clients to build and install'
166)
167option(
168 'simple-dmabuf-drm',
169 type: 'array',
170 choices: [ 'auto', 'intel', 'freedreno', 'etnaviv' ],
171 value: [ 'intel', 'freedreno', 'etnaviv' ],
172 description: 'List of DRM drivers to be supported by weston-simple-dmabuf-drm'
173)
174option(
175 'demo-clients',
176 type: 'boolean',
177 value: true,
178 description: 'Sample clients: toytoolkit demo programs'
179)
180option(
181 'simple-clients',
182 type: 'array',
Philipp Zabel2293cb42019-03-05 17:28:08 +0100183 choices: [ 'all', 'damage', 'im', 'egl', 'shm', 'touch', 'dmabuf-v4l', 'dmabuf-egl' ],
Daniel Stone8011b0f2016-11-24 15:54:51 +0000184 value: [ 'all' ],
185 description: 'Sample clients: simple test programs'
186)
187
188option(
189 'resize-pool',
190 type: 'boolean',
191 value: true,
192 description: 'Sample clients: optimize window resize performance'
193)
194option(
195 'wcap-decode',
196 type: 'boolean',
197 value: true,
198 description: 'Tools: screen recording decoder tool'
199)
200
201option(
202 'test-junit-xml',
203 type: 'boolean',
204 value: true,
205 description: 'Tests: output JUnit XML results'
206)
Marius Vladbbf6ea02019-06-14 12:41:02 +0300207option(
208 'doc',
209 type: 'boolean',
210 value: false,
211 description: 'Generate documentation'
212)