12345678910111213141516 |
- config BR2_PACKAGE_REDIS_PLUS_PLUS
- bool "redis-plus-plus"
- depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_TOOLCHAIN_HAS_THREADS
- select BR2_PACKAGE_HIREDIS
- help
- Redis client written in C++
- This is a C++ client library for Redis.
- It's based on hiredis, and is compatible
- with C++ 17, C++ 14, and C++ 11.
- https://github.com/sewenew/redis-plus-plus
- comment "redis-plus-plus needs a toolchain w/ C++, threads"
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|