[cpp-redis] Commit missing tacopie/CMakeLists.txt

Fixes #1610
This commit is contained in:
Robert Schumacher 2017-08-08 15:51:42 -07:00
parent b77fea6948
commit 68fabb939e
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
Source: cpp-redis
Version: 3.5.2
Version: 3.5.2-1
Build-Depends: tacopie
Description: cpp-redis is a C++11 Asynchronous Multi-Platform Lightweight Redis Client, with support for synchronous operations and pipelining.

View File

@ -0,0 +1,8 @@
find_library(TACOPIE tacopie)
find_path(TACOPIE_H tacopie/tacopie)
message(STATUS "TACOPIE_H: ${TACOPIE_H}")
add_library(tacopie INTERFACE)
target_link_libraries(tacopie INTERFACE "${TACOPIE}")
target_include_directories(tacopie INTERFACE "${TACOPIE_H}")