680d5dcc8c6d7771a0a6faa6bd3699fa13cc406a
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libiio / Config.in
1 config BR2_PACKAGE_LIBIIO
2         bool "libiio"
3         select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND if !BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
4         help
5           Libiio is a library to ease the development of software
6           interfacing Linux Industrial I/O (IIO) devices.
7
8           http://wiki.analog.com/resources/tools-software/linux-software/libiio
9
10 if BR2_PACKAGE_LIBIIO
11
12 config BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
13         bool "Local backend"
14         default y
15         help
16           Enable the local backend of the library.
17
18 config BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
19         bool "Network backend"
20         select BR2_PACKAGE_LIBXML2
21         default y
22         help
23           Enable the network backend of the library.
24
25 config BR2_PACKAGE_LIBIIO_IIOD
26         bool "IIO Daemon"
27         select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
28         depends on BR2_TOOLCHAIN_HAS_THREADS
29         default y
30         help
31           Install the IIO Daemon.
32
33 comment "IIO Daemon needs a toolchain w/ threads"
34         depends on !BR2_TOOLCHAIN_HAS_THREADS
35
36 config BR2_PACKAGE_LIBIIO_TESTS
37         bool "Install test programs"
38         select BR2_PACKAGE_LIBIIO_LOCAL_BACKEND
39         select BR2_PACKAGE_LIBIIO_NETWORK_BACKEND
40         help
41           Install the test programs (iio_info, iio_genxml, iio_readdev).
42
43 endif