forked from lbaehren/CMakeModules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FindPython.cmake
218 lines (189 loc) · 8.85 KB
/
FindPython.cmake
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#-------------------------------------------------------------------------------
# Copyright (c) 2013-2013, Lars Baehren <[email protected]>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#-------------------------------------------------------------------------------
# - Check for the presence of Python
#
# The following variables are set when PYTHON is found:
# PYTHON_FOUND = Set to true, if all components of PYTHON have been found.
# PYTHON_INCLUDES = Include path for the header files of PYTHON
# PYTHON_LIBRARIES = Link these to use PYTHON
# PYTHON_LFLAGS = Linker flags (optional)
if (NOT PYTHON_FOUND)
if (NOT PYTHON_ROOT_DIR)
set (PYTHON_ROOT_DIR ${CMAKE_INSTALL_PREFIX})
endif (NOT PYTHON_ROOT_DIR)
##____________________________________________________________________________
## Wrapper around the standard CMake modules.
## Always try to locate the Python interpreter first.
find_package (PythonInterp)
##____________________________________________________________________________
## Extract version number
if (NOT PYTHON_VERSION_STRING)
if (PYTHON_EXECUTABLE)
## Capture the output of 'python --version' into PYTHON_VERSION_STRING
execute_process (
COMMAND ${PYTHON_EXECUTABLE} --version
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
RESULT_VARIABLE PYTHON_VERSION_RESULT
OUTPUT_VARIABLE PYTHON_VERSION_OUTPUT
ERROR_VARIABLE PYTHON_VERSION_STRING
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_STRIP_TRAILING_WHITESPACE
)
endif (PYTHON_EXECUTABLE)
endif (NOT PYTHON_VERSION_STRING)
## Process output from version query
if (PYTHON_VERSION_STRING)
string (REGEX REPLACE "Python " "" PYTHON_VERSION ${PYTHON_VERSION_STRING})
string (REGEX REPLACE "\\." ";" PYTHON_VERSION ${PYTHON_VERSION})
## Extract major, minor and patch version
list (GET PYTHON_VERSION 0 PYTHON_VERSION_MAJOR)
list (GET PYTHON_VERSION 1 PYTHON_VERSION_MINOR)
list (GET PYTHON_VERSION 2 PYTHON_VERSION_PATCH)
## Assemble version number(s)
## - Release series in 'major.minor' format
## - Full version string in 'major.minor.patch' format
set (PYTHON_VERSION_SERIES "${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}")
set (PYTHON_VERSION "${PYTHON_VERSION_SERIES}.${PYTHON_VERSION_PATCH}")
endif (PYTHON_VERSION_STRING)
##____________________________________________________________________________
## Installation prefix
if (PYTHON_EXECUTABLE)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c from\ __future__\ import\ print_function\;\ import\ distutils.sysconfig\;\ print\(distutils.sysconfig.get_config_vars\(\)['prefix']\)
RESULT_VARIABLE PYTHON_PREFIX_ERROR
OUTPUT_VARIABLE PYTHON_PREFIX
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif (PYTHON_EXECUTABLE)
##____________________________________________________________________________
## Check for the header files.
## If possible get the information directly from the Python interpreter -
## if this does not work either try using the result from the CMake standard
## module. If all else fails, try looking for the header files directly.
if (PYTHON_EXECUTABLE)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c from\ __future__\ import\ print_function\;\ import\ distutils.sysconfig\;\ print\(distutils.sysconfig.get_python_inc\(\)\)
RESULT_VARIABLE PYTHON_INC_ERROR
OUTPUT_VARIABLE PYTHON_INCLUDES
OUTPUT_STRIP_TRAILING_WHITESPACE
)
else (PYTHON_EXECUTABLE)
if (PYTHON_INCLUDE_DIRS)
set (PYTHON_INCLUDES ${PYTHON_INCLUDE_DIRS})
else (PYTHON_INCLUDE_DIRS)
find_path (PYTHON_INCLUDES
NAMES Python.h
HINTS ${PYTHON_ROOT_DIR} ${CMAKE_INSTALL_PREFIX}
PATH_SUFFIXES include
)
endif (PYTHON_INCLUDE_DIRS)
endif (PYTHON_EXECUTABLE)
##____________________________________________________________________________
## Check for the library.
## If possible get the information directly from the Python interpreter.
if (NOT PYTHON_LIBRARIES)
find_library (PYTHON_LIBRARIES
NAMES python${PYTHON_VERSION_SERIES} python
PATHS ${PYTHON_PREFIX} ${PYTHON_ROOT_DIR} ${CMAKE_INSTALL_PREFIX}
PATH_SUFFIXES lib
NO_DEFAULT_PATH
)
endif (NOT PYTHON_LIBRARIES)
##____________________________________________________________________________
## Python platform identifier
if (PYTHON_EXECUTABLE)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c from\ __future__\ import\ print_function\;\ import\ sysconfig\;\ print\(sysconfig.get_platform\(\)\)
RESULT_VARIABLE PYTHON_PLATFORM_ERROR
OUTPUT_VARIABLE PYTHON_PLATFORM
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif (PYTHON_EXECUTABLE)
##____________________________________________________________________________
## Python installation prefix
if (PYTHON_EXECUTABLE)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c from\ __future__\ import\ print_function\;\ import\ distutils.sysconfig\;\ print\(distutils.sysconfig.PREFIX\)
RESULT_VARIABLE PYTHON_SITE_PREFIX_ERROR
OUTPUT_VARIABLE PYTHON_SITE_PREFIX
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif (PYTHON_EXECUTABLE)
##____________________________________________________________________________
## Location of the site packages
if (PYTHON_EXECUTABLE)
execute_process(
COMMAND ${PYTHON_EXECUTABLE} -c from\ __future__\ import\ print_function\;\ import\ distutils.sysconfig\;\ print\(distutils.sysconfig.get_python_lib\(\)\)
RESULT_VARIABLE PYTHON_SITE_PACKAGES_ERROR
OUTPUT_VARIABLE PYTHON_SITE_PACKAGES
OUTPUT_STRIP_TRAILING_WHITESPACE
)
endif (PYTHON_EXECUTABLE)
##____________________________________________________________________________
## Python path
if (PYTHON_PYTHONPATH)
set (PYTHON_PYTHONPATH "${PYTHON_PYTHONPATH}:$ENV{PYTHONPATH}")
else (PYTHON_PYTHONPATH)
set (PYTHON_PYTHONPATH "$ENV{PYTHONPATH}")
endif (PYTHON_PYTHONPATH)
string(REGEX REPLACE "::" ":" PYTHON_PYTHONPATH ${PYTHON_PYTHONPATH})
##____________________________________________________________________________
## Actions taken when all components have been found
find_package_handle_standard_args (PYTHON DEFAULT_MSG
PYTHON_EXECUTABLE
PYTHON_LIBRARIES
PYTHON_INCLUDES
)
if (PYTHON_FOUND)
## Update PYTHON_ROOT DIR
get_filename_component (PYTHON_EXECUTABLE_FILENAME ${PYTHON_EXECUTABLE} NAME)
string (REGEX REPLACE "/bin/${PYTHON_EXECUTABLE_FILENAME}" "" PYTHON_ROOT_DIR ${PYTHON_EXECUTABLE})
## Feedback
if (NOT PYTHON_FIND_QUIETLY)
message (STATUS "Found components for Python:")
message (STATUS "PYTHON_ROOT_DIR = ${PYTHON_ROOT_DIR}" )
message (STATUS "PYTHON_EXECUTABLE = ${PYTHON_EXECUTABLE}" )
message (STATUS "PYTHON_VERSION_SERIES = ${PYTHON_VERSION_SERIES}" )
message (STATUS "PYTHON_VERSION = ${PYTHON_VERSION}" )
message (STATUS "PYTHON_INCLUDES = ${PYTHON_INCLUDES}" )
message (STATUS "PYTHON_LIBRARIES = ${PYTHON_LIBRARIES}" )
message (STATUS "PYTHON_SITE_PACKAGES = ${PYTHON_SITE_PACKAGES}" )
message (STATUS "PYTHON_PYTHONPATH = ${PYTHON_PYTHONPATH}" )
endif (NOT PYTHON_FIND_QUIETLY)
else (PYTHON_FOUND)
if (PYTHON_FIND_REQUIRED)
message (FATAL_ERROR "Could not find PYTHON!")
endif (PYTHON_FIND_REQUIRED)
endif (PYTHON_FOUND)
##____________________________________________________________________________
## Mark advanced variables
mark_as_advanced (
PYTHON_ROOT_DIR
PYTHON_INCLUDES
PYTHON_LIBRARIES
PYTHON_VERSION_SERIES
PYTHON_SITE_PACKAGES
)
endif (NOT PYTHON_FOUND)