-
Notifications
You must be signed in to change notification settings - Fork 15.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CMake configuration to add a dependency on Abseil (#10401)
* Rolling #9793 forward * Removing private label on conformance linkage * no-op comment added
- Loading branch information
1 parent
ce1cd3d
commit cac9765
Showing
12 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# These are fetched as external repositories. | ||
third_party/abseil-cpp | ||
third_party/benchmark | ||
third_party/googletest | ||
_build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Setup our dependency on Abseil. | ||
|
||
set(ABSL_PROPAGATE_CXX_STD ON) | ||
|
||
if(protobuf_ABSL_PROVIDER STREQUAL "module") | ||
if(NOT ABSL_ROOT_DIR) | ||
set(ABSL_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/abseil-cpp) | ||
endif() | ||
if(EXISTS "${ABSL_ROOT_DIR}/CMakeLists.txt") | ||
if(protobuf_INSTALL) | ||
# When protobuf_INSTALL is enabled and Abseil will be built as a module, | ||
# Abseil will be installed along with protobuf for convenience. | ||
set(ABSL_ENABLE_INSTALL ON) | ||
endif() | ||
add_subdirectory(${ABSL_ROOT_DIR} third_party/abseil-cpp) | ||
else() | ||
message(WARNING "protobuf_ABSL_PROVIDER is \"module\" but ABSL_ROOT_DIR is wrong") | ||
endif() | ||
if(protobuf_INSTALL AND NOT _protobuf_INSTALL_SUPPORTED_FROM_MODULE) | ||
message(WARNING "protobuf_INSTALL will be forced to FALSE because protobuf_ABSL_PROVIDER is \"module\" and CMake version (${CMAKE_VERSION}) is less than 3.13.") | ||
set(protobuf_INSTALL FALSE) | ||
endif() | ||
elseif(protobuf_ABSL_PROVIDER STREQUAL "package") | ||
# Use "CONFIG" as there is no built-in cmake module for absl. | ||
find_package(absl REQUIRED CONFIG) | ||
endif() | ||
set(_protobuf_FIND_ABSL "if(NOT TARGET absl::strings)\n find_package(absl CONFIG)\nendif()") | ||
|
||
set(protobuf_ABSL_USED_TARGETS | ||
absl::strings | ||
absl::strings_internal | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule abseil-cpp
added at
8c6e53