ghamarian opened a new issue #10469: URL: https://github.com/apache/arrow/issues/10469
What is the official way of adding the targets using modern cmake? The only thing that worked for me is the following but not sure if it is the best way. I installed arrow using brew on mac. Vcpkg unfortunately does not work at the moment. ``` set(Parquet_DIR /usr/local/lib/cmake/arrow) find_package(Arrow CONFIG REQUIRED) find_package(Parquet CONFIG REQUIRED) target_link_libraries(database PRIVATE arrow_shared parquet_shared) ``` -- 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]
