forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
146 lines (121 loc) · 4.68 KB
/
Copy pathCMakeLists.txt
File metadata and controls
146 lines (121 loc) · 4.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# arrow_python
#
find_package(PythonLibsNew REQUIRED)
find_package(NumPy REQUIRED)
add_custom_target(arrow_python-all)
add_custom_target(arrow_python)
add_custom_target(arrow_python-tests)
add_dependencies(arrow_python-all arrow_python arrow_python-tests)
set(ARROW_PYTHON_SRCS
arrow_to_pandas.cc
benchmark.cc
common.cc
config.cc
decimal.cc
deserialize.cc
extension_type.cc
helpers.cc
inference.cc
init.cc
io.cc
numpy_convert.cc
numpy_to_arrow.cc
python_to_arrow.cc
pyarrow.cc
serialize.cc)
set(ARROW_PYTHON_DEPENDENCIES arrow_dependencies)
if(ARROW_FLIGHT)
set(ARROW_PYTHON_DEPENDENCIES ${ARROW_PYTHON_DEPENDENCIES} flight_grpc_gen)
set(ARROW_PYTHON_SRCS ${ARROW_PYTHON_SRCS} flight.cc)
endif()
if("${COMPILER_FAMILY}" STREQUAL "clang")
set_property(SOURCE pyarrow.cc APPEND_STRING PROPERTY COMPILE_FLAGS " -Wno-cast-qual ")
endif()
set(ARROW_PYTHON_SHARED_LINK_LIBS arrow_shared ${PYTHON_OTHER_LIBS})
if(ARROW_FLIGHT)
# Must link shared: we don't want to link more than one copy of gRPC
# into the eventual Cython shared object, otherwise gRPC calls fail
# with weird errors due to multiple copies of global static state
# (The other solution is to link gRPC shared everywhere instead of
# statically only in Flight)
set(ARROW_PYTHON_SHARED_LINK_LIBS ${ARROW_PYTHON_SHARED_LINK_LIBS} arrow_flight_shared)
endif()
if(WIN32)
set(ARROW_PYTHON_SHARED_LINK_LIBS ${ARROW_PYTHON_SHARED_LINK_LIBS} ${PYTHON_LIBRARIES})
endif()
set(ARROW_PYTHON_INCLUDES ${NUMPY_INCLUDE_DIRS} ${PYTHON_INCLUDE_DIRS})
add_arrow_lib(arrow_python
SOURCES
${ARROW_PYTHON_SRCS}
OUTPUTS
ARROW_PYTHON_LIBRARIES
DEPENDENCIES
${ARROW_PYTHON_DEPENDENCIES}
SHARED_LINK_FLAGS
${ARROW_VERSION_SCRIPT_FLAGS} # Defined in cpp/arrow/CMakeLists.txt
SHARED_LINK_LIBS
${ARROW_PYTHON_SHARED_LINK_LIBS}
STATIC_LINK_LIBS
${PYTHON_OTHER_LIBS}
EXTRA_INCLUDES
"${ARROW_PYTHON_INCLUDES}")
add_dependencies(arrow_python ${ARROW_PYTHON_LIBRARIES})
foreach(LIB_TARGET ${ARROW_PYTHON_LIBRARIES})
target_compile_definitions(${LIB_TARGET} PRIVATE ARROW_PYTHON_EXPORTING)
endforeach()
if(ARROW_BUILD_STATIC AND MSVC)
target_compile_definitions(arrow_python_static PUBLIC ARROW_STATIC)
endif()
if("${COMPILER_FAMILY}" STREQUAL "clang")
# Clang, be quiet. Python C API has lots of macros
set_property(SOURCE ${ARROW_PYTHON_SRCS}
APPEND_STRING
PROPERTY COMPILE_FLAGS -Wno-parentheses-equality)
endif()
arrow_install_all_headers("arrow/python")
# pkg-config support
arrow_add_pkg_config("arrow-python")
# ----------------------------------------------------------------------
if(ARROW_BUILD_TESTS)
add_library(arrow_python_test_main STATIC util/test_main.cc)
target_link_libraries(arrow_python_test_main GTest::GTest)
target_include_directories(arrow_python_test_main SYSTEM
PUBLIC ${ARROW_PYTHON_INCLUDES})
if(APPLE)
target_link_libraries(arrow_python_test_main ${CMAKE_DL_LIBS})
set_target_properties(arrow_python_test_main
PROPERTIES LINK_FLAGS "-undefined dynamic_lookup")
elseif(NOT MSVC)
target_link_libraries(arrow_python_test_main pthread ${CMAKE_DL_LIBS})
endif()
set(ARROW_PYTHON_MIN_TEST_LIBS arrow_python_test_main arrow_python_shared
arrow_testing_shared arrow_shared)
set(ARROW_PYTHON_TEST_LINK_LIBS ${ARROW_PYTHON_MIN_TEST_LIBS})
add_arrow_test(python-test
STATIC_LINK_LIBS
"${ARROW_PYTHON_TEST_LINK_LIBS}"
EXTRA_LINK_LIBS
${PYTHON_LIBRARIES}
EXTRA_INCLUDES
"${ARROW_PYTHON_INCLUDES}"
LABELS
"arrow_python-tests"
NO_VALGRIND)
endif()