FindPythonInterp.cmake 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. #.rst:
  4. # FindPythonInterp
  5. # ----------------
  6. #
  7. # Find python interpreter
  8. #
  9. # .. deprecated:: 3.12
  10. #
  11. # Use :module:`FindPython3`, :module:`FindPython2` or :module:`FindPython` instead.
  12. #
  13. # This module finds if Python interpreter is installed and determines
  14. # where the executables are. This code sets the following variables:
  15. #
  16. # ::
  17. #
  18. # PYTHONINTERP_FOUND - Was the Python executable found
  19. # PYTHON_EXECUTABLE - path to the Python interpreter
  20. #
  21. #
  22. #
  23. # ::
  24. #
  25. # PYTHON_VERSION_STRING - Python version found e.g. 2.5.2
  26. # PYTHON_VERSION_MAJOR - Python major version found e.g. 2
  27. # PYTHON_VERSION_MINOR - Python minor version found e.g. 5
  28. # PYTHON_VERSION_PATCH - Python patch version found e.g. 2
  29. #
  30. #
  31. #
  32. # The Python_ADDITIONAL_VERSIONS variable can be used to specify a list
  33. # of version numbers that should be taken into account when searching
  34. # for Python. You need to set this variable before calling
  35. # find_package(PythonInterp).
  36. #
  37. # If calling both ``find_package(PythonInterp)`` and
  38. # ``find_package(PythonLibs)``, call ``find_package(PythonInterp)`` first to
  39. # get the currently active Python version by default with a consistent version
  40. # of PYTHON_LIBRARIES.
  41. unset(_Python_NAMES)
  42. set(_PYTHON1_VERSIONS 1.6 1.5)
  43. set(_PYTHON2_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0)
  44. set(_PYTHON3_VERSIONS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
  45. if(PythonInterp_FIND_VERSION)
  46. if(PythonInterp_FIND_VERSION_COUNT GREATER 1)
  47. set(_PYTHON_FIND_MAJ_MIN "${PythonInterp_FIND_VERSION_MAJOR}.${PythonInterp_FIND_VERSION_MINOR}")
  48. list(APPEND _Python_NAMES
  49. python${_PYTHON_FIND_MAJ_MIN}
  50. python${PythonInterp_FIND_VERSION_MAJOR})
  51. unset(_PYTHON_FIND_OTHER_VERSIONS)
  52. if(NOT PythonInterp_FIND_VERSION_EXACT)
  53. foreach(_PYTHON_V ${_PYTHON${PythonInterp_FIND_VERSION_MAJOR}_VERSIONS})
  54. if(NOT _PYTHON_V VERSION_LESS _PYTHON_FIND_MAJ_MIN)
  55. list(APPEND _PYTHON_FIND_OTHER_VERSIONS ${_PYTHON_V})
  56. endif()
  57. endforeach()
  58. endif()
  59. unset(_PYTHON_FIND_MAJ_MIN)
  60. else()
  61. list(APPEND _Python_NAMES python${PythonInterp_FIND_VERSION_MAJOR})
  62. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON${PythonInterp_FIND_VERSION_MAJOR}_VERSIONS})
  63. endif()
  64. else()
  65. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON3_VERSIONS} ${_PYTHON2_VERSIONS} ${_PYTHON1_VERSIONS})
  66. endif()
  67. find_program(PYTHON_EXECUTABLE NAMES ${_Python_NAMES})
  68. # Set up the versions we know about, in the order we will search. Always add
  69. # the user supplied additional versions to the front.
  70. set(_Python_VERSIONS ${Python_ADDITIONAL_VERSIONS})
  71. # If FindPythonInterp has already found the major and minor version,
  72. # insert that version next to get consistent versions of the interpreter and
  73. # library.
  74. if(DEFINED PYTHONLIBS_VERSION_STRING)
  75. string(REPLACE "." ";" _PYTHONLIBS_VERSION "${PYTHONLIBS_VERSION_STRING}")
  76. list(GET _PYTHONLIBS_VERSION 0 _PYTHONLIBS_VERSION_MAJOR)
  77. list(GET _PYTHONLIBS_VERSION 1 _PYTHONLIBS_VERSION_MINOR)
  78. list(APPEND _Python_VERSIONS ${_PYTHONLIBS_VERSION_MAJOR}.${_PYTHONLIBS_VERSION_MINOR})
  79. endif()
  80. # Search for the current active python version first
  81. list(APPEND _Python_VERSIONS ";")
  82. list(APPEND _Python_VERSIONS ${_PYTHON_FIND_OTHER_VERSIONS})
  83. unset(_PYTHON_FIND_OTHER_VERSIONS)
  84. unset(_PYTHON1_VERSIONS)
  85. unset(_PYTHON2_VERSIONS)
  86. unset(_PYTHON3_VERSIONS)
  87. # Search for newest python version if python executable isn't found
  88. if(NOT PYTHON_EXECUTABLE)
  89. foreach(_CURRENT_VERSION IN LISTS _Python_VERSIONS)
  90. set(_Python_NAMES python${_CURRENT_VERSION})
  91. if(CMAKE_HOST_WIN32)
  92. list(APPEND _Python_NAMES python)
  93. endif()
  94. find_program(PYTHON_EXECUTABLE
  95. NAMES ${_Python_NAMES}
  96. PATHS
  97. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]
  98. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-32\\InstallPath]
  99. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-64\\InstallPath]
  100. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]
  101. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-32\\InstallPath]
  102. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-64\\InstallPath]
  103. )
  104. endforeach()
  105. endif()
  106. # determine python version string
  107. if(PYTHON_EXECUTABLE)
  108. execute_process(COMMAND "${PYTHON_EXECUTABLE}" -c
  109. "import sys; sys.stdout.write(';'.join([str(x) for x in sys.version_info[:3]]))"
  110. OUTPUT_VARIABLE _VERSION
  111. RESULT_VARIABLE _PYTHON_VERSION_RESULT
  112. ERROR_QUIET)
  113. if(NOT _PYTHON_VERSION_RESULT)
  114. string(REPLACE ";" "." PYTHON_VERSION_STRING "${_VERSION}")
  115. list(GET _VERSION 0 PYTHON_VERSION_MAJOR)
  116. list(GET _VERSION 1 PYTHON_VERSION_MINOR)
  117. list(GET _VERSION 2 PYTHON_VERSION_PATCH)
  118. if(PYTHON_VERSION_PATCH EQUAL 0)
  119. # it's called "Python 2.7", not "2.7.0"
  120. string(REGEX REPLACE "\\.0$" "" PYTHON_VERSION_STRING "${PYTHON_VERSION_STRING}")
  121. endif()
  122. else()
  123. # sys.version predates sys.version_info, so use that
  124. execute_process(COMMAND "${PYTHON_EXECUTABLE}" -c "import sys; sys.stdout.write(sys.version)"
  125. OUTPUT_VARIABLE _VERSION
  126. RESULT_VARIABLE _PYTHON_VERSION_RESULT
  127. ERROR_QUIET)
  128. if(NOT _PYTHON_VERSION_RESULT)
  129. string(REGEX REPLACE " .*" "" PYTHON_VERSION_STRING "${_VERSION}")
  130. string(REGEX REPLACE "^([0-9]+)\\.[0-9]+.*" "\\1" PYTHON_VERSION_MAJOR "${PYTHON_VERSION_STRING}")
  131. string(REGEX REPLACE "^[0-9]+\\.([0-9])+.*" "\\1" PYTHON_VERSION_MINOR "${PYTHON_VERSION_STRING}")
  132. if(PYTHON_VERSION_STRING MATCHES "^[0-9]+\\.[0-9]+\\.([0-9]+)")
  133. set(PYTHON_VERSION_PATCH "${CMAKE_MATCH_1}")
  134. else()
  135. set(PYTHON_VERSION_PATCH "0")
  136. endif()
  137. else()
  138. # sys.version was first documented for Python 1.5, so assume
  139. # this is older.
  140. set(PYTHON_VERSION_STRING "1.4")
  141. set(PYTHON_VERSION_MAJOR "1")
  142. set(PYTHON_VERSION_MINOR "4")
  143. set(PYTHON_VERSION_PATCH "0")
  144. endif()
  145. endif()
  146. unset(_PYTHON_VERSION_RESULT)
  147. unset(_VERSION)
  148. endif()
  149. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  150. FIND_PACKAGE_HANDLE_STANDARD_ARGS(PythonInterp REQUIRED_VARS PYTHON_EXECUTABLE VERSION_VAR PYTHON_VERSION_STRING)
  151. mark_as_advanced(PYTHON_EXECUTABLE)