We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58cccdd commit eab1602Copy full SHA for eab1602
cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -3057,8 +3057,9 @@ function(build_absl)
3057
# This is due to upstream absl::cctz issue
3058
# https://github.com/abseil/abseil-cpp/issues/283
3059
find_library(CoreFoundation CoreFoundation)
3060
- # The time target (for absl::time) needs CoreFoundation on macOS
3061
- set_property(TARGET absl_time
+ # When ABSL_ENABLE_INSTALL is ON, the real target is "time" not "absl_time"
+ # Cannot use set_property on alias targets (absl::time is an alias)
3062
+ set_property(TARGET time
3063
APPEND
3064
PROPERTY INTERFACE_LINK_LIBRARIES ${CoreFoundation})
3065
endif()
0 commit comments