From e1c7bc9bd945c9b6f6817aa1d03964037d1f4d27 Mon Sep 17 00:00:00 2001 From: Krishna Pai Date: Thu, 7 Nov 2024 14:43:15 -0800 Subject: [PATCH] Fix broken build. --- CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3518676633e1d..3e23eeb2447fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -505,9 +505,11 @@ if(${VELOX_BUILD_TESTING}) # 'gRPC_CARES_PROVIDER' is set as 'package', which means c-ares library needs # to be installed on the system, instead of being built by gRPC. - # set_source(c-ares) resolve_dependency(c-ares) + set_source(c-ares) + resolve_dependency(c-ares) - # set_source(gRPC) resolve_dependency(gRPC) + set_source(gRPC) + resolve_dependency(gRPC) endif() if(VELOX_ENABLE_REMOTE_FUNCTIONS)