Dimitrius-dev opened a new issue, #46221:
URL: https://github.com/apache/arrow/issues/46221

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   My preferences:
   OS: linux
   Arch: x86_64
   
   ### Issue case
   conanfile.py
   ```
   from conan import ConanFile
   from conan.tools.cmake import CMake, CMakeToolchain, CMakeDeps, cmake_layout
   
   class CompressorRecipe(ConanFile):
       settings = "os", "compiler", "build_type", "arch"
   
       def requirements(self):
           self.requires("arrow/19.0.1")
           pass
   
       def configure(self):
           self.options["*"].shared = False
           self.options["*"].fpic = True
   
           self.options["arrow/*"].with_orc = True
           self.options["arrow/*"].with_zlib = True
           pass
   
       def layout(self):
           cmake_layout(self)
           pass
   
       def generate(self):
           tc = CMakeToolchain(self)
           tc.generate()
           deps = CMakeDeps(self)
           deps.generate()
           pass
   
       def build(self):
           cmake = CMake(self)
           cmake.configure() 
           cmake.build()
           pass
   ```
   
   My CMakeLists.txt
   ```
   project(test_arrow)
   cmake_minimum_required(VERSION 3.26)
   
   add_executable(test_ArrowOrc
           src/test.cpp
   )
   
   find_package(Arrow 19.0.1 REQUIRED)
   
   target_include_directories(test_ArrowOrc PUBLIC include)
   
   target_link_libraries(test_ArrowOrc PUBLIC
           arrow::arrow
   )
   ```
   
   ```C++
   #include <arrow/adapters/orc/adapter.h>
   
   int main(){
       return 0;
   }
   ```
   ## Description
   So arrow/adapters/orc/adapter.h file is not found. Did a make mistake 
somewhere? It seems Arrow conan lib does not provide access for 
arrow/adapters/* files, though arrow/* other components are available.
   
   ### Component(s)
   
   C++


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to