FindPythonInterp.cmake 6.7 KB

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