mirror of
https://github.com/vale981/ray
synced 2025-03-07 02:51:39 -05:00

* add Ray status class * add C++ util files * add ID types * more APIs * build system integration * add test infrastructure and implement some APIs * add more tests * fix bugs * add task table tests * update * add toolchain file * fix * test * link with pthread * update * fix * more fixes * fixes * always vendor gtest and gflags * linting * fixes * add constants file * comments * more fixes * fix linting
42 lines
1.1 KiB
CMake
42 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.4)
|
|
|
|
project(ray)
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules")
|
|
|
|
# This ensures that things like gnu++11 get passed correctly
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
# We require a C++11 compliant compiler
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
option(RAY_BUILD_STATIC
|
|
"Build the libarrow static libraries"
|
|
ON)
|
|
|
|
option(RAY_BUILD_SHARED
|
|
"Build the libarrow shared libraries"
|
|
ON)
|
|
|
|
option(RAY_BUILD_TESTS
|
|
"Build the Ray googletest unit tests"
|
|
ON)
|
|
|
|
include(ExternalProject)
|
|
include(GNUInstallDirs)
|
|
include(BuildUtils)
|
|
enable_testing()
|
|
|
|
include(ThirdpartyToolchain)
|
|
|
|
set(ARROW_DIR "${CMAKE_CURRENT_LIST_DIR}/src/thirdparty/arrow/"
|
|
CACHE STRING "Path of the arrow source directory")
|
|
|
|
include_directories("${ARROW_DIR}/cpp/src/")
|
|
include_directories("${CMAKE_CURRENT_LIST_DIR}/src/")
|
|
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src/ray/)
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src/common/)
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src/plasma/)
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src/local_scheduler/)
|
|
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/src/global_scheduler/)
|