Skip to content

Commit

Permalink
use offical arrow 12.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: Enwei Jiao <[email protected]>
  • Loading branch information
jiaoew1991 committed Jul 13, 2023
1 parent 8c77060 commit abd1787
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

find_package(Boost REQUIRED)
find_package(arrow REQUIRED)
find_package(Arrow REQUIRED)
find_package(protobuf REQUIRED)

file(GLOB_RECURSE SRC_FILES src/*.cpp src/*.cc)
Expand Down
3 changes: 2 additions & 1 deletion cpp/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class StorageConan(ConanFile):
# "aws-sdk-cpp:transfer": False,
"arrow:filesystem_layer": True,
"arrow:dataset_modules": True,
"arrow:parquet": True,
}

exports_sources = (
Expand Down Expand Up @@ -73,7 +74,7 @@ def configure(self):

def requirements(self):
self.requires("boost/1.81.0")
self.requires("arrow/12.0.0-dev1@milvus/dev")
self.requires("arrow/12.0.0")
self.requires("protobuf/3.21.9")
if self.options.with_ut:
self.requires("gtest/1.13.0")
Expand Down

0 comments on commit abd1787

Please sign in to comment.