Bump re2 to latest HEAD

This commit is contained in:
Robert Schulze 2024-06-21 10:22:10 +00:00
parent af1e5c42a0
commit df857ff17a
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A
2 changed files with 9 additions and 5 deletions

2
contrib/re2 vendored

@ -1 +1 @@
Subproject commit a807e8a3aac2cc33c77b7071efea54fcabe38e0c Subproject commit 85dd7ad833a73095ecf3e3baea608ba051bbe2c7

View File

@ -28,16 +28,20 @@ set(RE2_SOURCES
add_library(_re2 ${RE2_SOURCES}) add_library(_re2 ${RE2_SOURCES})
target_include_directories(_re2 PUBLIC "${SRC_DIR}") target_include_directories(_re2 PUBLIC "${SRC_DIR}")
target_link_libraries(_re2 PRIVATE target_link_libraries(_re2 PRIVATE
absl::absl_check
absl::absl_log
absl::base absl::base
absl::core_headers absl::core_headers
absl::fixed_array absl::fixed_array
absl::flags
absl::flat_hash_map absl::flat_hash_map
absl::flat_hash_set absl::flat_hash_set
absl::hash
absl::inlined_vector absl::inlined_vector
absl::strings
absl::str_format
absl::synchronization
absl::optional absl::optional
absl::span) absl::span
absl::str_format
absl::strings
absl::synchronization)
add_library(ch_contrib::re2 ALIAS _re2) add_library(ch_contrib::re2 ALIAS _re2)