This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 00b77b2e1 ORC-1585: [C++] Add orc-format_ep as a dependency of orc
00b77b2e1 is described below
commit 00b77b2e1abe2e40b413480a515c08d4b909b59f
Author: ffacs <[email protected]>
AuthorDate: Fri Jan 12 09:09:27 2024 -0800
ORC-1585: [C++] Add orc-format_ep as a dependency of orc
### What changes were proposed in this pull request?
Makes orc-format_ep a dependency of orc
### Why are the changes needed?
Building breaks if `make orc-format_ep` or `make` have not been run.
### How was this patch tested?
`mkdir build && cd build && cmake .. -DBUILD_JAVA=OFF && make orc-scan -j
100` success
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #1745 from ffacs/ORC-1585.
Authored-by: ffacs <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
c++/src/CMakeLists.txt | 2 ++
1 file changed, 2 insertions(+)
diff --git a/c++/src/CMakeLists.txt b/c++/src/CMakeLists.txt
index 90f3ed87a..33ad58484 100644
--- a/c++/src/CMakeLists.txt
+++ b/c++/src/CMakeLists.txt
@@ -217,4 +217,6 @@ target_link_libraries (orc
${LIBHDFSPP_LIBRARIES}
)
+add_dependencies(orc orc-format_ep)
+
install(TARGETS orc DESTINATION lib)