westonpace commented on issue #10110:
URL: https://github.com/apache/arrow/issues/10110#issuecomment-823466651


   I'm not sure if this helps but for a very minimal CMakeLists I do the 
following (I use conda so most of my libraries are in my conda home directory, 
including libarrow.so & libarrow_dataset.so)...
   
   ```
   include_directories(${CONDA_HOME}/include)
   include_directories(${CONDA_HOME}/include/python3.7m)
   
include_directories(${CONDA_HOME}/lib64/python3.7/site-packages/numpy/core/include)
   link_directories(${CONDA_HOME}/lib64)
   link_directories(${CONDA_HOME}/lib)
   add_executable(read_csv read_csv.cc)
   target_link_libraries(read_csv arrow)
   target_link_libraries(read_csv arrow_dataset)
   ```


-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to