kou commented on issue #14801: URL: https://github.com/apache/arrow/issues/14801#issuecomment-1334374373
This is a problem of vcpkg's arrow port: https://github.com/microsoft/vcpkg/tree/master/ports/arrow We need a change something like the following to install `ArrowDatasetConfig.cmake`: ```diff diff --git a/ports/arrow/portfile.cmake b/ports/arrow/portfile.cmake index 595049bfb..9f9249b99 100644 --- a/ports/arrow/portfile.cmake +++ b/ports/arrow/portfile.cmake @@ -72,6 +72,13 @@ if(EXISTS "${CURRENT_PACKAGES_DIR}/lib/arrow_static.lib") message(FATAL_ERROR "Installed lib file should be named 'arrow.lib' via patching the upstream build.") endif() +if("dataset" IN_LIST FEATURES) + vcpkg_cmake_config_fixup( + PACKAGE_NAME arrowdataset + CONFIG_PATH lib/cmake/ArrowDataset + DO_NOT_DELETE_PARENT_CONFIG_PATH + ) +endif() if("parquet" IN_LIST FEATURES) vcpkg_cmake_config_fixup( PACKAGE_NAME parquet ``` Could you send a pull request to https://github.com/microsoft/vcpkg/ ? -- 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]
