kou commented on code in PR #48017:
URL: https://github.com/apache/arrow/pull/48017#discussion_r2488208385
##########
cpp/src/arrow/meson.build:
##########
@@ -649,7 +682,13 @@ if needs_testing
arrow_testing_lib = static_library(
'arrow_testing',
sources: arrow_testing_srcs,
- dependencies: [arrow_dep, filesystem_dep, gmock_dep, gtest_dep],
+ dependencies: [
+ arrow_dep,
+ filesystem_dep,
+ gmock_dep,
+ gtest_dep,
+ process_dep,
Review Comment:
Could you use the following order because Boost.Process depends on
Boost.Filesystem:
```suggestion
process_dep,
filesystem_dep,
gmock_dep,
gtest_dep,
```
--
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]