2013-03-25 14:28:03 +01:00
|
|
|
config BR2_PACKAGE_ZMQPP
|
|
|
|
bool "zmqpp"
|
2015-08-04 20:00:39 +02:00
|
|
|
# c++0x support
|
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
|
2013-03-25 14:28:03 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
|
depends on BR2_USE_WCHAR # util-linux
|
2013-04-07 04:00:33 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # zeromq
|
2013-03-25 14:28:03 +01:00
|
|
|
select BR2_PACKAGE_ZEROMQ
|
|
|
|
help
|
|
|
|
C++ binding for zeromq (ZeroMQ, 0MQ, zmq).
|
|
|
|
|
|
|
|
This C++ binding is a 'high-level' library that hides most of the
|
|
|
|
C-style interface core zeromq provides.
|
|
|
|
|
|
|
|
http://github.com/benjamg/zmqpp
|
|
|
|
|
2015-08-04 20:00:39 +02:00
|
|
|
comment "zmqpp needs a toolchain w/ C++, wchar, threads, gcc >= 4.6"
|
2015-08-05 11:07:39 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
|
2013-03-25 14:28:03 +01:00
|
|
|
|
2013-11-07 09:24:37 +01:00
|
|
|
if BR2_PACKAGE_ZMQPP
|
|
|
|
|
2013-03-25 14:28:03 +01:00
|
|
|
config BR2_PACKAGE_ZMQPP_CLIENT
|
|
|
|
bool "zmqpp client"
|
2015-11-23 23:23:21 +01:00
|
|
|
depends on !BR2_STATIC_LIBS
|
2013-03-25 14:28:03 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # boost
|
2015-05-15 20:23:48 +02:00
|
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
2013-03-25 14:28:03 +01:00
|
|
|
select BR2_PACKAGE_BOOST
|
|
|
|
select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
|
|
|
|
help
|
|
|
|
Build and install the zmqpp client, a command line tool that can be
|
|
|
|
used to listen or send to zeromq sockets.
|
|
|
|
|
2015-11-23 23:23:21 +01:00
|
|
|
comment "zmqpp client needs a toolchain w/ dynamic library, threads"
|
2015-05-15 20:23:48 +02:00
|
|
|
depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
|
2015-11-23 23:23:21 +01:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|
2013-11-07 09:24:37 +01:00
|
|
|
|
|
|
|
endif
|