From 22d6b99f5180d7b9659566e7d975c1d91502dbaa Mon Sep 17 00:00:00 2001 From: katbohm <96047875+katbohm@users.noreply.github.com> Date: Mon, 18 Sep 2023 12:25:11 +0200 Subject: [PATCH] Update CMakeLists.txt Temporary fix for b/283987730 (failing build due to new protobuf having absl dependencies). --- cpp/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index cdd7a0813..b2078edcb 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -433,7 +433,7 @@ include_directories ("src") # Collate dependencies #---------------------------------------------------------------- -set (LIBRARY_DEPS ${ICU_LIB} ${PROTOBUF_LIB} absl::node_hash_set absl::strings absl::synchronization) +set (LIBRARY_DEPS ${ICU_LIB} ${PROTOBUF_LIB} absl::node_hash_set absl::strings absl::synchronization absl::log_internal_message absl::log_internal_check_op) if (USE_BOOST) list (APPEND LIBRARY_DEPS ${Boost_LIBRARIES})