mirror of
https://github.com/vale981/ray
synced 2025-03-08 19:41:38 -05:00

* use cmake to build ray project, no need to appply build.sh before cmake, fix some abuse of cmake, improve the build performance * support boost external project, avoid using the system or build.sh boost * keep compatible with build.sh, remove boost and arrow build from it. * bugfix: parquet bison version control, plasma_java lib install problem * bugfix: cmake, do not compile plasma java client if no need * bugfix: component failures test timeout machenism has problem for plasma manager failed case * bugfix: arrow use lib64 in centos, travis check-git-clang-format-output.sh does not support other branches except master * revert some fix * set arrow python executable, fix format error in component_failures_test.py * make clean arrow python build directory * update cmake code style, back to support cmake minimum version 3.4
45 lines
1.3 KiB
CMake
45 lines
1.3 KiB
CMake
# parquet external project
|
|
# target:
|
|
# - parquet_ep
|
|
# depends:
|
|
# - arrow_ep
|
|
# defines:
|
|
# - PARQUET_HOME
|
|
# - PARQUET_INCLUDE_DIR
|
|
# - PARQUET_STATIC_LIB
|
|
# - PARQUET_SHARED_LIB
|
|
|
|
include(ExternalProject)
|
|
|
|
set(parquet_URL https://github.com/apache/parquet-cpp.git)
|
|
set(parquet_TAG 63f41b00bddecb172bd5b3aa0366b4653f498811)
|
|
|
|
# install parquet into arrow_home...
|
|
set(PARQUET_INSTALL_PREFIX ${ARROW_HOME})
|
|
set(PARQUET_HOME ${PARQUET_INSTALL_PREFIX})
|
|
set(PARQUET_INCLUDE_DIR ${PARQUET_INSTALL_PREFIX}/include)
|
|
set(PARQUET_STATIC_LIB ${PARQUET_INSTALL_PREFIX}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}parquet.a)
|
|
set(PARQUET_SHARED_LIB ${PARQUET_INSTALL_PREFIX}/lib/${CMAKE_STATIC_LIBRARY_PREFIX}parquet${CMAKE_SHARED_LIBRARY_SUFFIX})
|
|
|
|
set(parquet_CMAKE_ARGS
|
|
-DCMAKE_BUILD_TYPE:STRING=Release
|
|
-DCMAKE_INSTALL_PREFIX=${PARQUET_INSTALL_PREFIX}
|
|
-DARROW_HOME=${ARROW_HOME}
|
|
-DBOOST_ROOT=${BOOST_ROOT}
|
|
-DPARQUET_BUILD_BENCHMARKS=off
|
|
-DPARQUET_BUILD_EXECUTABLES=off
|
|
-DPARQUET_BUILD_TESTS=off)
|
|
|
|
set(parquet_ENV "")
|
|
if (APPLE)
|
|
set(parquet_ENV "PATH=/usr/local/opt/bison/bin:$ENV{PATH}"
|
|
"OPENSSL_ROOT_DIR=/usr/local/opt/openssl")
|
|
endif ()
|
|
|
|
ExternalProject_Add(parquet_ep
|
|
PREFIX external/parquet
|
|
DEPENDS arrow_ep
|
|
GIT_REPOSITORY ${parquet_URL}
|
|
GIT_TAG ${parquet_TAG}
|
|
BUILD_COMMAND ${CMAKE_COMMAND} -E env ${parquet_ENV} $(MAKE)
|
|
CMAKE_ARGS ${parquet_CMAKE_ARGS})
|