From 0ed4fb736fe48a29d7eded28d365912bf365b191 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20M=C3=BCller?= Date: Fri, 15 Mar 2024 13:28:36 +0000 Subject: [PATCH] fix: Enable `ABSL_ENABLE_INSTALL`. This makes all Abseil targets installable, which is required to make targets that depend on those in this project installable as well. --- third_party/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/CMakeLists.txt b/third_party/CMakeLists.txt index fb340296..9e2b5ca9 100644 --- a/third_party/CMakeLists.txt +++ b/third_party/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 +set(ABSL_ENABLE_INSTALL ON) if(NOT ${ABSL_INCLUDED_WITH_PROTOBUF}) set(ABSL_PROPAGATE_CXX_STD ON) add_subdirectory(abseil-cpp)