WillAyd commented on code in PR #45828:
URL: https://github.com/apache/arrow/pull/45828#discussion_r2000204936


##########
cpp/src/arrow/io/meson.build:
##########
@@ -0,0 +1,75 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+io_tests = ['buffered_test', 'compressed_test', 'file_test', 'memory_test']
+
+foreach io_test : io_tests
+    test_name = 'arrow-io-@0@'.format(io_test.replace('_', '-'))
+    exc = executable(
+        test_name,
+        sources: '@0@.cc'.format(io_test),
+        dependencies: [arrow_test_dep],
+        implicit_include_directories: false,
+    )
+    test(test_name, exc)
+endforeach
+
+if needs_hdfs
+    hdfs_incdir = '../../../thirdparty/hadoop/include'

Review Comment:
   I'm not sure that there is a way with the wrapdb to natively extract just 
the file we need from a collection of projects like that without a top level 
CMakeLists.txt or meson.build configuration. I'll have to research that further 
if its a blocker here



-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to