summaryrefslogtreecommitdiff
path: root/tutorial/cpp
diff options
context:
space:
mode:
authorDave Watson <davejwatson@fb.com>2015-01-16 11:22:01 -0800
committerNobuaki Sukegawa <nsuke@apache.org>2015-11-04 01:25:22 +0900
commit792db4e92607a38a45eeb57f9561210cd4d4ef73 (patch)
tree09c0d82965e7c57bbf7d9b65b010e435fea7b2ba /tutorial/cpp
parentb31f0900b57b7473a8f84c7b74f73381dcff2818 (diff)
downloadthrift-792db4e92607a38a45eeb57f9561210cd4d4ef73.tar.gz
THRIFT-2423 Facebook's THeader protocol and transport for cpp
Client: C++ Library, Compiler Patch: Dave Watson rebased by Nobuaki Sukegawa This closes #357 and closes #677
Diffstat (limited to 'tutorial/cpp')
-rw-r--r--tutorial/cpp/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/tutorial/cpp/CMakeLists.txt b/tutorial/cpp/CMakeLists.txt
index 2b0c1439b..42d92ff07 100644
--- a/tutorial/cpp/CMakeLists.txt
+++ b/tutorial/cpp/CMakeLists.txt
@@ -45,7 +45,9 @@ add_custom_command(OUTPUT gen-cpp/Calculator.cpp gen-cpp/SharedService.cpp gen-c
add_executable(TutorialServer CppServer.cpp)
target_link_libraries(TutorialServer tutorialgencpp)
LINK_AGAINST_THRIFT_LIBRARY(TutorialServer thrift)
+target_link_libraries(TutorialServer ${ZLIB_LIBRARIES})
add_executable(TutorialClient CppClient.cpp)
target_link_libraries(TutorialClient tutorialgencpp)
LINK_AGAINST_THRIFT_LIBRARY(TutorialClient thrift)
+target_link_libraries(TutorialClient ${ZLIB_LIBRARIES})