Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cpp/cmake_modules/ThirdpartyToolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -1974,7 +1974,9 @@ function(build_protobuf)

# Make protobuf_fc depend on the install completion marker
add_custom_target(protobuf_fc DEPENDS "${PROTOBUF_PREFIX}/.protobuf_installed")
list(APPEND ARROW_BUNDLED_STATIC_LIBS protobuf::libprotobuf)
set(ARROW_BUNDLED_STATIC_LIBS
${ARROW_BUNDLED_STATIC_LIBS} protobuf::libprotobuf
PARENT_SCOPE)

if(CMAKE_CROSSCOMPILING)
# If we are cross compiling, we need to build protoc for the host
Expand Down
Loading