summaryrefslogtreecommitdiffstats
path: root/rules/qrencode.in
blob: e53f561b3a2245b92641b1aa92096931a98e1a1b (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
## SECTION=multimedia_tools

menuconfig QRENCODE
	tristate
	prompt "qrencode                      "
	select LIBPNG		if QRENCODE_TOOLS
	select LIBC_PTHREAD
	help
	  Libqrencode is a C library for encoding data in a QR Code symbol, a
	  kind of 2D symbology that can be scanned by handy terminals such as a
	  mobile phone with CCD.

if QRENCODE

config QRENCODE_TOOLS
	bool
	default y
	prompt "build tools"
	help
	  Enable this option to build the qrencode tool to build QR codes from
	  the command line.

endif

# vim: ft=kconfig ts=8 noet tw=80