From ec2ccf4d1cddf873c894526ddda2eceddb5886cd Mon Sep 17 00:00:00 2001 From: Leonardo Grasso Date: Wed, 9 Sep 2020 12:11:51 +0200 Subject: [PATCH] build: fix cares include Co-Authored-By: Lorenzo Fontana Co-Authored-By: Leonardo Di Donato Signed-off-by: Leonardo Grasso --- cmake/modules/gRPC.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/gRPC.cmake b/cmake/modules/gRPC.cmake index ee4b009a..9d94bf29 100644 --- a/cmake/modules/gRPC.cmake +++ b/cmake/modules/gRPC.cmake @@ -98,7 +98,7 @@ else() set(ZLIB_LIB "${GRPC_LIBS_ABSOLUTE}/libz.a") # we tell gRPC to compile c-ares for us because when a gRPC package is not available, like on CentOS, it's very likely # that c-ares will be very outdated - set(CARES_INCLUDE "${GRPC_SRC}/third_party/cares/cares") + set(CARES_INCLUDE "${GRPC_SRC}/third_party/cares" "${GRPC_SRC}/third_party/cares/cares") set(CARES_LIB "${GRPC_LIBS_ABSOLUTE}/libares.a") message(STATUS "Using bundled gRPC in '${GRPC_SRC}'")