Skip to content

Commit

Permalink
Add ArrowCompute dependency to ArrowAcery and interface libs
Browse files Browse the repository at this point in the history
  • Loading branch information
raulcd committed Feb 25, 2025
1 parent 88c709b commit 794a8ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions cpp/src/arrow/acero/ArrowAceroConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

include(CMakeFindDependencyMacro)
find_dependency(Arrow)
find_dependency(ArrowCompute)

include("${CMAKE_CURRENT_LIST_DIR}/ArrowAceroTargets.cmake")

Expand Down
6 changes: 4 additions & 2 deletions cpp/src/arrow/acero/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,10 @@ if(ARROW_WITH_OPENTELEMETRY)
list(APPEND ARROW_ACERO_STATIC_LINK_LIBS ${ARROW_OPENTELEMETRY_LIBS})
endif()

list(APPEND ARROW_ACERO_STATIC_INSTALL_INTERFACE_LIBS Arrow::arrow_static)
list(APPEND ARROW_ACERO_SHARED_INSTALL_INTERFACE_LIBS Arrow::arrow_shared)
list(APPEND ARROW_ACERO_STATIC_INSTALL_INTERFACE_LIBS Arrow::arrow_static
ArrowCompute::arrow_compute_static)
list(APPEND ARROW_ACERO_SHARED_INSTALL_INTERFACE_LIBS Arrow::arrow_shared
ArrowCompute::arrow_compute_shared)
list(APPEND ARROW_ACERO_STATIC_LINK_LIBS arrow_static arrow_compute_static)
list(APPEND ARROW_ACERO_SHARED_LINK_LIBS arrow_shared arrow_compute_shared)

Expand Down

0 comments on commit 794a8ca

Please sign in to comment.