]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/zmqpp/Config.in
8dad80e451983d2e97cdf85957d8e1685705b6e4
[coffee/buildroot.git] / package / zmqpp / Config.in
1 config BR2_PACKAGE_ZMQPP
2         bool "zmqpp"
3         # c++1x support
4         depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
5         depends on BR2_INSTALL_LIBSTDCPP
6         depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
7         select BR2_PACKAGE_ZEROMQ
8         help
9           C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
10
11           This C++ binding is a 'high-level' library that hides most
12           of the C-style interface core zeromq provides.
13
14           http://github.com/benjamg/zmqpp
15
16 comment "zmqpp needs a toolchain w/ C++, threads, gcc >= 4.7"
17         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
18                 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
19
20 if BR2_PACKAGE_ZMQPP
21
22 config BR2_PACKAGE_ZMQPP_CLIENT
23         bool "zmqpp client"
24         depends on !BR2_STATIC_LIBS
25         depends on BR2_TOOLCHAIN_HAS_THREADS # boost
26         depends on BR2_USE_WCHAR # boost
27         select BR2_PACKAGE_BOOST
28         select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
29         help
30           Build and install the zmqpp client, a command line tool that
31           can be used to listen or send to zeromq sockets.
32
33 comment "zmqpp client needs a toolchain w/ dynamic library, threads, wchar"
34         depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS \
35                 || !BR2_USE_WCHAR
36
37 endif