2017-01-17 16:56:40 -08:00
|
|
|
# Code for compiling flatbuffers
|
2016-07-20 21:47:37 -07:00
|
|
|
|
2017-01-17 16:56:40 -08:00
|
|
|
include(ExternalProject)
|
2017-02-28 18:47:40 -08:00
|
|
|
include(CMakeParseArguments)
|
2016-07-20 21:47:37 -07:00
|
|
|
|
2017-10-12 21:00:23 -07:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -g -Werror -Wall -Wno-error=unused-function -Wno-error=strict-aliasing")
|
2016-07-20 21:47:37 -07:00
|
|
|
|
2017-10-13 21:39:11 -07:00
|
|
|
# The rdynamic flag is needed to produce better backtraces on Linux.
|
|
|
|
if(UNIX AND NOT APPLE)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -rdynamic")
|
|
|
|
endif()
|
|
|
|
|
2017-01-17 16:56:40 -08:00
|
|
|
# Custom CFLAGS
|
|
|
|
|
2017-12-14 14:54:09 -08:00
|
|
|
set(CMAKE_C_FLAGS "-g -Wall -Wextra -Werror=implicit-function-declaration -Wno-sign-compare -Wno-unused-parameter -Wno-type-limits -Wno-missing-field-initializers --std=c99 -fPIC -std=c99")
|
2017-01-17 16:56:40 -08:00
|
|
|
|
2018-05-19 10:09:23 +08:00
|
|
|
# language-specific
|
|
|
|
if ("${CMAKE_RAY_LANG_PYTHON}" STREQUAL "YES")
|
|
|
|
# Code for finding Python
|
|
|
|
find_package(PythonInterp REQUIRED)
|
|
|
|
find_package(NumPy REQUIRED)
|
|
|
|
|
|
|
|
# Now find the Python include directories.
|
|
|
|
execute_process(COMMAND ${PYTHON_EXECUTABLE} -c "from distutils.sysconfig import *; print(get_python_inc())"
|
|
|
|
OUTPUT_VARIABLE PYTHON_INCLUDE_DIRS OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
message(STATUS "PYTHON_INCLUDE_DIRS: " ${PYTHON_INCLUDE_DIRS})
|
|
|
|
|
|
|
|
message(STATUS "Using PYTHON_EXECUTABLE: " ${PYTHON_EXECUTABLE})
|
|
|
|
message(STATUS "Using PYTHON_INCLUDE_DIRS: " ${PYTHON_INCLUDE_DIRS})
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if ("${CMAKE_RAY_LANG_JAVA}" STREQUAL "YES")
|
|
|
|
find_package(JNI REQUIRED)
|
|
|
|
# add jni support
|
|
|
|
include_directories(${JAVA_INCLUDE_PATH})
|
|
|
|
include_directories(${JAVA_INCLUDE_PATH2})
|
|
|
|
if (JNI_FOUND)
|
|
|
|
message (STATUS "JNI_INCLUDE_DIRS=${JNI_INCLUDE_DIRS}")
|
|
|
|
message (STATUS "JNI_LIBRARIES=${JNI_LIBRARIES}")
|
|
|
|
else()
|
|
|
|
message (WARNING "NOT FIND JNI")
|
|
|
|
endif()
|
|
|
|
endif()
|