We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8422b24 commit e0f72a1Copy full SHA for e0f72a1
python/pyarrow/meson.build
@@ -390,19 +390,11 @@ py.install_sources(
390
),
391
subdir: 'pyarrow/include/arrow/python',
392
)
393
-#if arrow_dep.found()
394
-# arrow_header_dir = arrow_dep.get_variable(
395
-# CMake has a local variable for ARROW_INCLUDE_DIR which is not
396
-# detectable from Meson
397
-# cmake: 'ARROW_INCLUDE_DIR',
398
-# pkgconfig: 'includedir',
399
-# ) / 'arrow'
400
-
401
-# install_subdir(
402
-# arrow_header_dir,
403
-# install_dir: py.get_install_dir() / 'pyarrow/include',
404
-# )
405
-#endif
+
+install_subdir(
+ get_option('includedir') / 'arrow',
+ install_dir: py.get_install_dir() / 'pyarrow/include',
+)
406
407
py.install_sources(
408
files('src/arrow/python/vendored/pythoncapi_compat.h'),
0 commit comments