update controller image and some dependencies

This commit is contained in:
Grant Limberg 2022-06-22 15:03:19 -07:00
commit 183a9d7088
No known key found for this signature in database
GPG key ID: 8F2F97D3BE8D7735
667 changed files with 173907 additions and 17 deletions

View file

@ -0,0 +1,12 @@
@PACKAGE_INIT@
include(CMakeFindDependencyMacro)
string(REPLACE "," ";" REDIS_PLUS_PLUS_DEPENDS_LIST @REDIS_PLUS_PLUS_DEPENDS@)
foreach(REDIS_PLUS_PLUS_DEP ${REDIS_PLUS_PLUS_DEPENDS_LIST})
find_dependency(${REDIS_PLUS_PLUS_DEP} REQUIRED)
endforeach()
include("${CMAKE_CURRENT_LIST_DIR}/redis++-targets.cmake")
check_required_components(redis++)

View file

@ -0,0 +1,12 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: redis++
Description: This is a Redis client, based on hiredis and written in C++11. It supports scritpting, pub/sub, pipeline, transaction, Redis Cluster, Redis Sentinel, connection pool, ACL, SSL and thread safety.
Version: @PROJECT_VERSION@
URL: https://github.com/sewenew/redis-plus-plus
Requires: @REDIS_PLUS_PLUS_DEPENDS@
Cflags: -I${includedir}
Libs: -L${libdir} -lredis++