From 3975e21c1f1c5805d47216dc44d976ce7694da2b Mon Sep 17 00:00:00 2001 From: Derek G Foster Date: Wed, 1 Jan 2025 09:29:08 -0800 Subject: [PATCH] Modify to use discrete re2 package (#322) - Link with `re2::re2` instead of `gRPC::re2`. Signed-off-by: Derek Foster --- stratum/tools/gnmi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stratum/tools/gnmi/CMakeLists.txt b/stratum/tools/gnmi/CMakeLists.txt index f93e67aad..1d51eb860 100644 --- a/stratum/tools/gnmi/CMakeLists.txt +++ b/stratum/tools/gnmi/CMakeLists.txt @@ -18,10 +18,10 @@ target_link_libraries(gnmi_cli PUBLIC gflags::gflags_shared gRPC::grpc gRPC::grpc++ - gRPC::re2 protobuf::libprotobuf pthread google_rpc_proto + re2::re2 ) if(HAVE_POSIX_AIO)