You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(c): Declare dependencies for drivers in Meson configuration (#2746)
These don't impact arrow-adbc directly, but are theoretically helpful
for downstream projects that might want to use ADBC dependencies from
source.
With this, on the next release I think we could add arrow-adbc to
Meson's wrap database, and give users the option of something as simple
as running:
```bash
meson wrap install adbc
```
To fetch adbc as a subproject. With that, users could then do:
```python
adbc_bigquery_driver_dep = dependency('adbc_bigquery_driver')
myexc = executable(
'some-executable',
sources: [...],
dependencies: [adbc_bigquery_driver_dep],
)
```
To have Meson automatically compile and link the executable to the
appropriate driver
0 commit comments