FindPythonLibs.cmake 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. #.rst:
  2. # FindPythonLibs
  3. # --------------
  4. #
  5. # Find python libraries
  6. #
  7. # This module finds if Python is installed and determines where the
  8. # include files and libraries are. It also determines what the name of
  9. # the library is. This code sets the following variables:
  10. #
  11. # ::
  12. #
  13. # PYTHONLIBS_FOUND - have the Python libs been found
  14. # PYTHON_LIBRARIES - path to the python library
  15. # PYTHON_INCLUDE_PATH - path to where Python.h is found (deprecated)
  16. # PYTHON_INCLUDE_DIRS - path to where Python.h is found
  17. # PYTHON_DEBUG_LIBRARIES - path to the debug library (deprecated)
  18. # PYTHONLIBS_VERSION_STRING - version of the Python libs found (since CMake 2.8.8)
  19. #
  20. #
  21. #
  22. # The Python_ADDITIONAL_VERSIONS variable can be used to specify a list
  23. # of version numbers that should be taken into account when searching
  24. # for Python. You need to set this variable before calling
  25. # find_package(PythonLibs).
  26. #
  27. # If you'd like to specify the installation of Python to use, you should
  28. # modify the following cache variables:
  29. #
  30. # ::
  31. #
  32. # PYTHON_LIBRARY - path to the python library
  33. # PYTHON_INCLUDE_DIR - path to where Python.h is found
  34. #
  35. # If calling both ``find_package(PythonInterp)`` and
  36. # ``find_package(PythonLibs)``, call ``find_package(PythonInterp)`` first to
  37. # get the currently active Python version by default with a consistent version
  38. # of PYTHON_LIBRARIES.
  39. #=============================================================================
  40. # Copyright 2001-2009 Kitware, Inc.
  41. #
  42. # Distributed under the OSI-approved BSD License (the "License");
  43. # see accompanying file Copyright.txt for details.
  44. #
  45. # This software is distributed WITHOUT ANY WARRANTY; without even the
  46. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  47. # See the License for more information.
  48. #=============================================================================
  49. # (To distribute this file outside of CMake, substitute the full
  50. # License text for the above reference.)
  51. # Use the executable's path as a hint
  52. set(_Python_LIBRARY_PATH_HINT)
  53. if(PYTHON_EXECUTABLE)
  54. if(WIN32)
  55. get_filename_component(_Python_PREFIX ${PYTHON_EXECUTABLE} PATH)
  56. if(_Python_PREFIX)
  57. set(_Python_LIBRARY_PATH_HINT ${_Python_PREFIX}/libs)
  58. endif()
  59. unset(_Python_PREFIX)
  60. else()
  61. get_filename_component(_Python_PREFIX ${PYTHON_EXECUTABLE} PATH)
  62. get_filename_component(_Python_PREFIX ${_Python_PREFIX} PATH)
  63. if(_Python_PREFIX)
  64. set(_Python_LIBRARY_PATH_HINT ${_Python_PREFIX}/lib)
  65. endif()
  66. unset(_Python_PREFIX)
  67. endif()
  68. endif()
  69. include(${CMAKE_CURRENT_LIST_DIR}/CMakeFindFrameworks.cmake)
  70. # Search for the python framework on Apple.
  71. CMAKE_FIND_FRAMEWORKS(Python)
  72. # Save CMAKE_FIND_FRAMEWORK
  73. if(DEFINED CMAKE_FIND_FRAMEWORK)
  74. set(_PythonLibs_CMAKE_FIND_FRAMEWORK ${CMAKE_FIND_FRAMEWORK})
  75. else()
  76. unset(_PythonLibs_CMAKE_FIND_FRAMEWORK)
  77. endif()
  78. # To avoid picking up the system Python.h pre-maturely.
  79. set(CMAKE_FIND_FRAMEWORK LAST)
  80. set(_PYTHON1_VERSIONS 1.6 1.5)
  81. set(_PYTHON2_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0)
  82. set(_PYTHON3_VERSIONS 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
  83. if(PythonLibs_FIND_VERSION)
  84. if(PythonLibs_FIND_VERSION_COUNT GREATER 1)
  85. set(_PYTHON_FIND_MAJ_MIN "${PythonLibs_FIND_VERSION_MAJOR}.${PythonLibs_FIND_VERSION_MINOR}")
  86. unset(_PYTHON_FIND_OTHER_VERSIONS)
  87. if(PythonLibs_FIND_VERSION_EXACT)
  88. if(_PYTHON_FIND_MAJ_MIN STREQUAL PythonLibs_FIND_VERSION)
  89. set(_PYTHON_FIND_OTHER_VERSIONS "${PythonLibs_FIND_VERSION}")
  90. else()
  91. set(_PYTHON_FIND_OTHER_VERSIONS "${PythonLibs_FIND_VERSION}" "${_PYTHON_FIND_MAJ_MIN}")
  92. endif()
  93. else()
  94. foreach(_PYTHON_V ${_PYTHON${PythonLibs_FIND_VERSION_MAJOR}_VERSIONS})
  95. if(NOT _PYTHON_V VERSION_LESS _PYTHON_FIND_MAJ_MIN)
  96. list(APPEND _PYTHON_FIND_OTHER_VERSIONS ${_PYTHON_V})
  97. endif()
  98. endforeach()
  99. endif()
  100. unset(_PYTHON_FIND_MAJ_MIN)
  101. else()
  102. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON${PythonLibs_FIND_VERSION_MAJOR}_VERSIONS})
  103. endif()
  104. else()
  105. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON3_VERSIONS} ${_PYTHON2_VERSIONS} ${_PYTHON1_VERSIONS})
  106. endif()
  107. # Set up the versions we know about, in the order we will search. Always add
  108. # the user supplied additional versions to the front.
  109. # If FindPythonInterp has already found the major and minor version,
  110. # insert that version between the user supplied versions and the stock
  111. # version list.
  112. set(_Python_VERSIONS ${Python_ADDITIONAL_VERSIONS})
  113. if(DEFINED PYTHON_VERSION_MAJOR AND DEFINED PYTHON_VERSION_MINOR)
  114. list(APPEND _Python_VERSIONS ${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR})
  115. endif()
  116. list(APPEND _Python_VERSIONS ${_PYTHON_FIND_OTHER_VERSIONS})
  117. unset(_PYTHON_FIND_OTHER_VERSIONS)
  118. unset(_PYTHON1_VERSIONS)
  119. unset(_PYTHON2_VERSIONS)
  120. unset(_PYTHON3_VERSIONS)
  121. foreach(_CURRENT_VERSION ${_Python_VERSIONS})
  122. string(REPLACE "." "" _CURRENT_VERSION_NO_DOTS ${_CURRENT_VERSION})
  123. if(WIN32)
  124. find_library(PYTHON_DEBUG_LIBRARY
  125. NAMES python${_CURRENT_VERSION_NO_DOTS}_d python
  126. HINTS ${_Python_LIBRARY_PATH_HINT}
  127. PATHS
  128. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs/Debug
  129. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs/Debug
  130. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs
  131. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs
  132. )
  133. endif()
  134. set(PYTHON_FRAMEWORK_LIBRARIES)
  135. if(Python_FRAMEWORKS AND NOT PYTHON_LIBRARY)
  136. foreach(dir ${Python_FRAMEWORKS})
  137. list(APPEND PYTHON_FRAMEWORK_LIBRARIES
  138. ${dir}/Versions/${_CURRENT_VERSION}/lib)
  139. endforeach()
  140. endif()
  141. find_library(PYTHON_LIBRARY
  142. NAMES
  143. python${_CURRENT_VERSION_NO_DOTS}
  144. python${_CURRENT_VERSION}mu
  145. python${_CURRENT_VERSION}m
  146. python${_CURRENT_VERSION}u
  147. python${_CURRENT_VERSION}
  148. HINTS
  149. ${_Python_LIBRARY_PATH_HINT}
  150. PATHS
  151. ${PYTHON_FRAMEWORK_LIBRARIES}
  152. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs
  153. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/libs
  154. # Avoid finding the .dll in the PATH. We want the .lib.
  155. NO_SYSTEM_ENVIRONMENT_PATH
  156. )
  157. # Look for the static library in the Python config directory
  158. find_library(PYTHON_LIBRARY
  159. NAMES python${_CURRENT_VERSION_NO_DOTS} python${_CURRENT_VERSION}
  160. # Avoid finding the .dll in the PATH. We want the .lib.
  161. NO_SYSTEM_ENVIRONMENT_PATH
  162. # This is where the static library is usually located
  163. PATH_SUFFIXES python${_CURRENT_VERSION}/config
  164. )
  165. # Don't search for include dir until library location is known
  166. if(PYTHON_LIBRARY)
  167. # Use the library's install prefix as a hint
  168. set(_Python_INCLUDE_PATH_HINT)
  169. get_filename_component(_Python_PREFIX ${PYTHON_LIBRARY} PATH)
  170. get_filename_component(_Python_PREFIX ${_Python_PREFIX} PATH)
  171. if(_Python_PREFIX)
  172. set(_Python_INCLUDE_PATH_HINT ${_Python_PREFIX}/include)
  173. endif()
  174. unset(_Python_PREFIX)
  175. # Add framework directories to the search paths
  176. set(PYTHON_FRAMEWORK_INCLUDES)
  177. if(Python_FRAMEWORKS AND NOT PYTHON_INCLUDE_DIR)
  178. foreach(dir ${Python_FRAMEWORKS})
  179. list(APPEND PYTHON_FRAMEWORK_INCLUDES
  180. ${dir}/Versions/${_CURRENT_VERSION}/include)
  181. endforeach()
  182. endif()
  183. find_path(PYTHON_INCLUDE_DIR
  184. NAMES Python.h
  185. HINTS
  186. ${_Python_INCLUDE_PATH_HINT}
  187. PATHS
  188. ${PYTHON_FRAMEWORK_INCLUDES}
  189. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/include
  190. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]/include
  191. PATH_SUFFIXES
  192. python${_CURRENT_VERSION}mu
  193. python${_CURRENT_VERSION}m
  194. python${_CURRENT_VERSION}u
  195. python${_CURRENT_VERSION}
  196. )
  197. endif()
  198. # For backward compatibility, set PYTHON_INCLUDE_PATH.
  199. set(PYTHON_INCLUDE_PATH "${PYTHON_INCLUDE_DIR}")
  200. if(PYTHON_INCLUDE_DIR AND EXISTS "${PYTHON_INCLUDE_DIR}/patchlevel.h")
  201. file(STRINGS "${PYTHON_INCLUDE_DIR}/patchlevel.h" python_version_str
  202. REGEX "^#define[ \t]+PY_VERSION[ \t]+\"[^\"]+\"")
  203. string(REGEX REPLACE "^#define[ \t]+PY_VERSION[ \t]+\"([^\"]+)\".*" "\\1"
  204. PYTHONLIBS_VERSION_STRING "${python_version_str}")
  205. unset(python_version_str)
  206. endif()
  207. if(PYTHON_LIBRARY AND PYTHON_INCLUDE_DIR)
  208. break()
  209. endif()
  210. endforeach()
  211. unset(_Python_INCLUDE_PATH_HINT)
  212. unset(_Python_LIBRARY_PATH_HINT)
  213. mark_as_advanced(
  214. PYTHON_DEBUG_LIBRARY
  215. PYTHON_LIBRARY
  216. PYTHON_INCLUDE_DIR
  217. )
  218. # We use PYTHON_INCLUDE_DIR, PYTHON_LIBRARY and PYTHON_DEBUG_LIBRARY for the
  219. # cache entries because they are meant to specify the location of a single
  220. # library. We now set the variables listed by the documentation for this
  221. # module.
  222. set(PYTHON_INCLUDE_DIRS "${PYTHON_INCLUDE_DIR}")
  223. set(PYTHON_DEBUG_LIBRARIES "${PYTHON_DEBUG_LIBRARY}")
  224. # These variables have been historically named in this module different from
  225. # what SELECT_LIBRARY_CONFIGURATIONS() expects.
  226. set(PYTHON_LIBRARY_DEBUG "${PYTHON_DEBUG_LIBRARY}")
  227. set(PYTHON_LIBRARY_RELEASE "${PYTHON_LIBRARY}")
  228. include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
  229. SELECT_LIBRARY_CONFIGURATIONS(PYTHON)
  230. # SELECT_LIBRARY_CONFIGURATIONS() sets ${PREFIX}_FOUND if it has a library.
  231. # Unset this, this prefix doesn't match the module prefix, they are different
  232. # for historical reasons.
  233. unset(PYTHON_FOUND)
  234. # Restore CMAKE_FIND_FRAMEWORK
  235. if(DEFINED _PythonLibs_CMAKE_FIND_FRAMEWORK)
  236. set(CMAKE_FIND_FRAMEWORK ${_PythonLibs_CMAKE_FIND_FRAMEWORK})
  237. unset(_PythonLibs_CMAKE_FIND_FRAMEWORK)
  238. else()
  239. unset(CMAKE_FIND_FRAMEWORK)
  240. endif()
  241. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  242. FIND_PACKAGE_HANDLE_STANDARD_ARGS(PythonLibs
  243. REQUIRED_VARS PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS
  244. VERSION_VAR PYTHONLIBS_VERSION_STRING)
  245. # PYTHON_ADD_MODULE(<name> src1 src2 ... srcN) is used to build modules for python.
  246. # PYTHON_WRITE_MODULES_HEADER(<filename>) writes a header file you can include
  247. # in your sources to initialize the static python modules
  248. function(PYTHON_ADD_MODULE _NAME )
  249. get_property(_TARGET_SUPPORTS_SHARED_LIBS
  250. GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS)
  251. option(PYTHON_ENABLE_MODULE_${_NAME} "Add module ${_NAME}" TRUE)
  252. option(PYTHON_MODULE_${_NAME}_BUILD_SHARED
  253. "Add module ${_NAME} shared" ${_TARGET_SUPPORTS_SHARED_LIBS})
  254. # Mark these options as advanced
  255. mark_as_advanced(PYTHON_ENABLE_MODULE_${_NAME}
  256. PYTHON_MODULE_${_NAME}_BUILD_SHARED)
  257. if(PYTHON_ENABLE_MODULE_${_NAME})
  258. if(PYTHON_MODULE_${_NAME}_BUILD_SHARED)
  259. set(PY_MODULE_TYPE MODULE)
  260. else()
  261. set(PY_MODULE_TYPE STATIC)
  262. set_property(GLOBAL APPEND PROPERTY PY_STATIC_MODULES_LIST ${_NAME})
  263. endif()
  264. set_property(GLOBAL APPEND PROPERTY PY_MODULES_LIST ${_NAME})
  265. add_library(${_NAME} ${PY_MODULE_TYPE} ${ARGN})
  266. # target_link_libraries(${_NAME} ${PYTHON_LIBRARIES})
  267. if(PYTHON_MODULE_${_NAME}_BUILD_SHARED)
  268. set_target_properties(${_NAME} PROPERTIES PREFIX "${PYTHON_MODULE_PREFIX}")
  269. if(WIN32 AND NOT CYGWIN)
  270. set_target_properties(${_NAME} PROPERTIES SUFFIX ".pyd")
  271. endif()
  272. endif()
  273. endif()
  274. endfunction()
  275. function(PYTHON_WRITE_MODULES_HEADER _filename)
  276. get_property(PY_STATIC_MODULES_LIST GLOBAL PROPERTY PY_STATIC_MODULES_LIST)
  277. get_filename_component(_name "${_filename}" NAME)
  278. string(REPLACE "." "_" _name "${_name}")
  279. string(TOUPPER ${_name} _nameUpper)
  280. set(_filename ${CMAKE_CURRENT_BINARY_DIR}/${_filename})
  281. set(_filenameTmp "${_filename}.in")
  282. file(WRITE ${_filenameTmp} "/*Created by cmake, do not edit, changes will be lost*/\n")
  283. file(APPEND ${_filenameTmp}
  284. "#ifndef ${_nameUpper}
  285. #define ${_nameUpper}
  286. #include <Python.h>
  287. #ifdef __cplusplus
  288. extern \"C\" {
  289. #endif /* __cplusplus */
  290. ")
  291. foreach(_currentModule ${PY_STATIC_MODULES_LIST})
  292. file(APPEND ${_filenameTmp} "extern void init${PYTHON_MODULE_PREFIX}${_currentModule}(void);\n\n")
  293. endforeach()
  294. file(APPEND ${_filenameTmp}
  295. "#ifdef __cplusplus
  296. }
  297. #endif /* __cplusplus */
  298. ")
  299. foreach(_currentModule ${PY_STATIC_MODULES_LIST})
  300. file(APPEND ${_filenameTmp} "int ${_name}_${_currentModule}(void) \n{\n static char name[]=\"${PYTHON_MODULE_PREFIX}${_currentModule}\"; return PyImport_AppendInittab(name, init${PYTHON_MODULE_PREFIX}${_currentModule});\n}\n\n")
  301. endforeach()
  302. file(APPEND ${_filenameTmp} "void ${_name}_LoadAllPythonModules(void)\n{\n")
  303. foreach(_currentModule ${PY_STATIC_MODULES_LIST})
  304. file(APPEND ${_filenameTmp} " ${_name}_${_currentModule}();\n")
  305. endforeach()
  306. file(APPEND ${_filenameTmp} "}\n\n")
  307. file(APPEND ${_filenameTmp} "#ifndef EXCLUDE_LOAD_ALL_FUNCTION\nvoid CMakeLoadAllPythonModules(void)\n{\n ${_name}_LoadAllPythonModules();\n}\n#endif\n\n#endif\n")
  308. # with configure_file() cmake complains that you may not use a file created using file(WRITE) as input file for configure_file()
  309. execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different "${_filenameTmp}" "${_filename}" OUTPUT_QUIET ERROR_QUIET)
  310. endfunction()