mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
756f184553
* [gRPC] update to v1.41.0 * update version * [upb] Update to 2021-10-19 * Update pacth * [upb] Fix upstream bug * Replace depreciate functions * version * fix code * version * revert patch format * update version * Fix review advise * update version * Remove extra spaces * update version * update version * Remove space in patch file * change patch format from CRLF to CF * update version * revert patch format * update version * revert patch format * update version * Remove unnecessary additional * update version Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
34 lines
1014 B
Diff
34 lines
1014 B
Diff
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
|
|
index 6b4c50d..b4f43f9 100644
|
|
--- a/cmake/CMakeLists.txt
|
|
+++ b/cmake/CMakeLists.txt
|
|
@@ -66,6 +66,10 @@ endif()
|
|
enable_testing()
|
|
|
|
add_library(port INTERFACE)
|
|
+add_library(descriptor_upb_proto INTERFACE)
|
|
+add_library(utf8_range
|
|
+ ../third_party/utf8_range/utf8_range.c
|
|
+ ../third_party/utf8_range/utf8_range.h)
|
|
add_library(upb
|
|
../upb/decode.c
|
|
../upb/decode_internal.h
|
|
@@ -84,7 +88,7 @@ add_library(upb
|
|
target_link_libraries(upb
|
|
fastdecode
|
|
port
|
|
- /third_party/utf8_range)
|
|
+ utf8_range)
|
|
add_library(fastdecode
|
|
../upb/decode.h
|
|
../upb/decode_internal.h
|
|
@@ -96,7 +100,7 @@ add_library(fastdecode
|
|
target_link_libraries(fastdecode
|
|
port
|
|
table
|
|
- /third_party/utf8_range)
|
|
+ utf8_range)
|
|
add_library(generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me INTERFACE)
|
|
target_link_libraries(generated_code_support__only_for_generated_code_do_not_use__i_give_permission_to_break_me INTERFACE
|
|
table
|