WillAyd commented on code in PR #45768:
URL: https://github.com/apache/arrow/pull/45768#discussion_r1994689920
##########
cpp/src/arrow/meson.build:
##########
@@ -371,25 +371,38 @@ install_headers(
)
if needs_tests
- filesystem_dep = dependency(
+ boost_dep = dependency(
'boost',
modules: ['filesystem'],
Review Comment:
To clarify the updated code, with Meson a call to:
```python
boost_dep = declare_dependency('boost')
```
Will return a dependency to the header only library for boost. If you
additionally call with a module like:
```python
filesystem_dep = dependency('boost', modules: 'filesystem')
```
The dependency will then cause linkage against the specified module(s)
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]