We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c58b9a commit 9062aa9Copy full SHA for 9062aa9
cmake/install.cmake
@@ -1,7 +1,10 @@
1
include(GNUInstallDirs)
2
3
foreach(_target IN LISTS protobuf_ABSL_USED_TARGETS)
4
- string(REPLACE :: _ _modified_target ${_target})
+ # shared abseil on windows breaks the absl::foo -> absl_foo replacement logic -
5
+ # preempt this by a more specific replace (harmless if it doesn't apply); see GH-15883
6
+ string(REPLACE "absl::abseil_dll" "abseil_dll" _modified_target ${_target})
7
+ string(REPLACE :: _ _modified_target ${_modified_target})
8
list(APPEND _pc_targets ${_modified_target})
9
endforeach()
10
list(APPEND _pc_targets "utf8_range")
0 commit comments