1config BR2_PACKAGE_REDIS_PLUS_PLUS
2	bool "redis-plus-plus"
3	depends on BR2_INSTALL_LIBSTDCPP
4	depends on BR2_TOOLCHAIN_HAS_THREADS
5	select BR2_PACKAGE_HIREDIS
6	help
7	  Redis client written in C++
8
9	  This is a C++ client library for Redis.
10	  It's based on hiredis, and is compatible
11	  with C++ 17, C++ 14, and C++ 11.
12
13	  https://github.com/sewenew/redis-plus-plus
14
15comment "redis-plus-plus needs a toolchain w/ C++, threads"
16	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
17