mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 19:19:00 +08:00
fcdac2dc15
* Correct protobuf under android (Fix issue #8218) - This fixes https://github.com/microsoft/vcpkg/issues/8218 The original error is linkely inside protobuf CMakeLists, which should link the log library under Android. See explanations here: https://github.com/protocolbuffers/protobuf/issues/2719 * ports/protobuf/CONTROL: Version 3.11.4-1
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
diff --git a/cmake/libprotobuf-lite.cmake b/cmake/libprotobuf-lite.cmake
|
|
index 6bf86a277..424854798 100644
|
|
--- a/cmake/libprotobuf-lite.cmake
|
|
+++ b/cmake/libprotobuf-lite.cmake
|
|
@@ -67,6 +67,9 @@ target_link_libraries(libprotobuf-lite ${CMAKE_THREAD_LIBS_INIT})
|
|
if(protobuf_LINK_LIBATOMIC)
|
|
target_link_libraries(libprotobuf-lite atomic)
|
|
endif()
|
|
+if(${CMAKE_SYSTEM_NAME} STREQUAL "Android")
|
|
+ target_link_libraries(libprotobuf-lite log)
|
|
+endif()
|
|
target_include_directories(libprotobuf-lite PUBLIC ${protobuf_source_dir}/src)
|
|
if(MSVC AND protobuf_BUILD_SHARED_LIBS)
|
|
target_compile_definitions(libprotobuf-lite
|
|
diff --git a/cmake/libprotobuf.cmake b/cmake/libprotobuf.cmake
|
|
index 0c12596c2..a5be494fb 100644
|
|
--- a/cmake/libprotobuf.cmake
|
|
+++ b/cmake/libprotobuf.cmake
|
|
@@ -121,6 +121,9 @@ endif()
|
|
if(protobuf_LINK_LIBATOMIC)
|
|
target_link_libraries(libprotobuf atomic)
|
|
endif()
|
|
+if(${CMAKE_SYSTEM_NAME} STREQUAL "Android")
|
|
+ target_link_libraries(libprotobuf log)
|
|
+endif()
|
|
target_include_directories(libprotobuf PUBLIC ${protobuf_source_dir}/src)
|
|
if(MSVC AND protobuf_BUILD_SHARED_LIBS)
|
|
target_compile_definitions(libprotobuf
|