summaryrefslogtreecommitdiffstats
path: root/rules/libwebp.in
blob: 0d0dc5a442bc2761ed8a662e1730ffd635d96c8e (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
## SECTION=multimedia_libs

menuconfig LIBWEBP
	tristate
	prompt "libwebp                       "
	help
	  Library to encode and decode images in WebP format.

if LIBWEBP

config LIBWEBP_DECODER
	bool
	prompt "additional decoder-only library"

config LIBWEBP_MUX
	bool
	prompt "webpmux support"

config LIBWEBP_DEMUX
	bool
	prompt "webpdemux support"

config LIBWEBP_CWEBP
	bool
	select LIBWEBP_DEMUX
	prompt "install cwebp tool"

config LIBWEBP_DWEBP
	bool
	select LIBWEBP_DEMUX
	prompt "install dwebp tool"

endif