You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/04/20 17:28:50 UTC

[GitHub] [arrow] westonpace commented on issue #10110: Use arrow_dataset in C++

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:
users@infra.apache.org