如何在 Xcode C++ 项目中设置和使用 Apache arrow

问题描述 投票:0回答:1

我需要在 Xcode 的 C++ 项目中读取和写入一些 parquet.gzip 文件。据我了解,我应该使用 Apache 的 Arrow 库。然而,我很难在我的 Xcode 项目中使用它。

我用

下载了它
git clone https://github.com/apache/arrow.git
cd arrow
brew update && brew bundle --file=cpp/Brewfile

导航至目录并

cd arrow/cpp
mkdir build
cd build
cmake .. --preset ninja-debug-minimal
cmake --build .

现在我不确定如何在我的 C++ XCode 项目中使用该库。

c++ xcode xcode6 apache-arrow
1个回答
0
投票
© www.soinside.com 2019 - 2024. All rights reserved.