summaryrefslogtreecommitdiffstats
path: root/rules/weston.in
blob: 182fcc3bdf39d0a4823209a1adc3bc1bd3808eed (plain)
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
## SECTION=multimedia_wayland

config WESTON
	tristate
	select LIBC_UTIL
	select PIXMAN
	select WAYLAND
	select LIBXKBCOMMON
	select LIBJPEG
	select LIBPNG
	select LIBINPUT
	select CAIRO
	select CAIRO_PNG
	select LIBDRM			if WESTON_DRM_COMPOSITOR
	select MTDEV			if WESTON_DRM_COMPOSITOR || WESTON_FBDEV_COMPOSITOR
	select UDEV			if WESTON_DRM_COMPOSITOR || WESTON_FBDEV_COMPOSITOR
	select UDEV_LIBUDEV		if WESTON_DRM_COMPOSITOR || WESTON_FBDEV_COMPOSITOR
	select MESALIB			if WESTON_DRM_COMPOSITOR
	select MESALIB_GBM		if WESTON_DRM_COMPOSITOR
	select MESALIB_EGL		if WESTON_GL
	select MESALIB_EGL_WAYLAND	if WESTON_GL
	select MESALIB_GLES2		if WESTON_GL
	select CAIRO_GLES2		if WESTON_GL
	select CAIRO_EGL		if WESTON_GL
	select CAIRO_XCB		if WESTON_XWAYLAND
	select LIBXCB			if WESTON_XWAYLAND
	select XORG_LIB_XCURSOR		if WESTON_XWAYLAND
	select XORG_SERVER		if WESTON_XWAYLAND && RUNTIME
	select XORG_SERVER_XWAYLAND	if WESTON_XWAYLAND && RUNTIME
	prompt "weston"
	help
	  Wayland compositor reference implementation

if WESTON

config WESTON_XWAYLAND
	bool
	prompt "Xwayland support"

config WESTON_DRM_COMPOSITOR
	bool
	prompt "drm compositor"

config WESTON_GL
	bool
	depends on WESTON_DRM_COMPOSITOR
	prompt "OpenGL accelerated compositing"

config WESTON_HEADLESS_COMPOSITOR
	bool
	prompt "headless compositor"

config WESTON_FBDEV_COMPOSITOR
	bool
	prompt "fbdev compositor"

config WESTON_WCAP_TOOLS
	bool
	prompt "wcap tools"
	help
	  Weston CAPture Tools

endif