WillAyd opened a new issue, #46365: URL: https://github.com/apache/arrow/issues/46365
### Describe the enhancement requested Now that Arrow 20.0.0 has been released with (experimental and not-fully-supported) Meson functionality, we can look to add arrow to the wrapdb. An upstream PR for this has been added at https://github.com/mesonbuild/wrapdb/pull/2099 In theory, this will allow users to do: ```bash $ cd <project_root> $ mkdir -p subprojects $ meson wrap install arrow ``` And then create a Meson configuration like: ```python arrow_dep = dependency('arrow') executable( 'main', sources: ['main.cc'], dependencies: [arrow_dep], ) ``` to create a target that needs to include and link to Arrow The 20.0.0 Meson configuration is of course incomplete, and the API of the options will actually change going into 21.0.0. So this will definitely not be a stable solution up front, but I think still worth adding and maybe even documenting. cc @kou @pitrou @raulcd for any thoughts ### 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