2020-06-24 05:36:26 +08:00
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
|
|
index f71a212..77cf3de 100644
|
|
|
|
--- a/CMakeLists.txt
|
|
|
|
+++ b/CMakeLists.txt
|
|
|
|
@@ -1771,6 +1771,8 @@ target_link_libraries(grpc
|
|
|
|
absl::optional
|
|
|
|
absl::strings
|
|
|
|
absl::inlined_vector
|
|
|
|
+ absl::time
|
|
|
|
+ absl::synchronization
|
|
|
|
)
|
|
|
|
if(_gRPC_PLATFORM_IOS OR _gRPC_PLATFORM_MAC)
|
|
|
|
target_link_libraries(grpc "-framework CoreFoundation")
|
|
|
|
@@ -2355,6 +2357,8 @@ target_link_libraries(grpc_unsecure
|
|
|
|
absl::optional
|
|
|
|
absl::strings
|
|
|
|
absl::inlined_vector
|
|
|
|
+ absl::time
|
|
|
|
+ absl::synchronization
|
|
|
|
)
|
|
|
|
if(_gRPC_PLATFORM_IOS OR _gRPC_PLATFORM_MAC)
|
|
|
|
target_link_libraries(grpc_unsecure "-framework CoreFoundation")
|
2020-05-21 05:20:37 +08:00
|
|
|
diff --git a/cmake/abseil-cpp.cmake b/cmake/abseil-cpp.cmake
|
|
|
|
index 078d495..b6f50bd 100644
|
|
|
|
--- a/cmake/abseil-cpp.cmake
|
|
|
|
+++ b/cmake/abseil-cpp.cmake
|
|
|
|
@@ -37,4 +37,7 @@ elseif(gRPC_ABSL_PROVIDER STREQUAL "package")
|
|
|
|
# Use "CONFIG" as there is no built-in cmake module for absl.
|
|
|
|
find_package(absl REQUIRED CONFIG)
|
|
|
|
set(_gRPC_FIND_ABSL "if(NOT absl_FOUND)\n find_package(absl CONFIG)\nendif()")
|
|
|
|
+ if (gRPC_ABSL_SYNC_ENABLE)
|
|
|
|
+ add_definitions(-DGPR_ABSEIL_SYNC=1)
|
|
|
|
+ endif()
|
|
|
|
endif()
|