This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 9da39eabd ORC-1585: [C++] Add orc-format_ep as a dependency of orc
9da39eabd is described below

commit 9da39eabd3b26fb1d9ef96e104d5ed03446cd19d
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]>
    (cherry picked from commit 00b77b2e1abe2e40b413480a515c08d4b909b59f)
    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)

Reply via email to