This is an automated email from the ASF dual-hosted git repository.
brycemecum pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 38703f46c8 GH-47153: [Docs][C++] Update cmake target table in
build_system.rst with newly added targets (#47154)
38703f46c8 is described below
commit 38703f46c8c0f3d21a522b429eb8dac40688554f
Author: Bryce Mecum <[email protected]>
AuthorDate: Mon Jul 21 12:05:15 2025 -0700
GH-47153: [Docs][C++] Update cmake target table in build_system.rst with
newly added targets (#47154)
### Rationale for this change
We were missing documentation for some of the newer CMake packages and
targets we've split out. This adds documentation for those (acero, compute).
### What changes are included in this PR?
- Updates the table in build_system.rst to include ArrowAcero and
ArrowCompute
### Are these changes tested?
No, will render in CI though for others to see.
### Are there any user-facing changes?
No.
* GitHub Issue: #47153
Authored-by: Bryce Mecum <[email protected]>
Signed-off-by: Bryce Mecum <[email protected]>
---
docs/source/cpp/build_system.rst | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/docs/source/cpp/build_system.rst b/docs/source/cpp/build_system.rst
index 5f89866a16..77ec23fdf2 100644
--- a/docs/source/cpp/build_system.rst
+++ b/docs/source/cpp/build_system.rst
@@ -118,6 +118,10 @@ This is the list of available ones and the respective
targets created:
+===============================================+========================================================+=====================================================+
| ``find_package(ArrowCUDA REQUIRED)`` |
``ArrowCUDA::arrow_cuda_shared`` |
``ArrowCUDA::arrow_cuda_static`` |
+-----------------------------------------------+--------------------------------------------------------+-----------------------------------------------------+
+| ``find_package(ArrowAcero REQUIRED)`` |
``ArrowAcero::arrow_acero_shared`` |
``ArrowAcero::arrow_acero_static`` |
++-----------------------------------------------+--------------------------------------------------------+-----------------------------------------------------+
+| ``find_package(ArrowCompute REQUIRED)`` |
``ArrowCompute::arrow_compute_shared`` |
``ArrowCompute::arrow_compute_static`` |
++-----------------------------------------------+--------------------------------------------------------+-----------------------------------------------------+
| ``find_package(ArrowDataset REQUIRED)`` |
``ArrowDataset::arrow_dataset_shared`` |
``ArrowDataset::arrow_dataset_static`` |
+-----------------------------------------------+--------------------------------------------------------+-----------------------------------------------------+
| ``find_package(ArrowFlight REQUIRED)`` |
``ArrowFlight::arrow_flight_shared`` |
``ArrowFlight::arrow_flight_static`` |