python.cmake 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # SPDX-License-Identifier: Apache-2.0
  2. # On Windows, instruct Python to output UTF-8 even when not
  3. # interacting with a terminal. This is required since Python scripts
  4. # are invoked by CMake code and, on Windows, standard I/O encoding defaults
  5. # to the current code page if not connected to a terminal, which is often
  6. # not what we want.
  7. if (WIN32)
  8. set(ENV{PYTHONIOENCODING} "utf-8")
  9. endif()
  10. set(PYTHON_MINIMUM_REQUIRED 3.6)
  11. # We are using foreach here, instead of find_program(PYTHON_EXECUTABLE_SYSTEM_DEFAULT "python" "python3")
  12. # cause just using find_program directly could result in a python2.7 as python, and not finding a valid python3.
  13. foreach(PYTHON_PREFER ${PYTHON_PREFER} ${WEST_PYTHON} "python" "python3")
  14. find_program(PYTHON_PREFER_EXECUTABLE ${PYTHON_PREFER})
  15. if(PYTHON_PREFER_EXECUTABLE)
  16. execute_process (COMMAND "${PYTHON_PREFER_EXECUTABLE}" -c
  17. "import sys; sys.stdout.write('.'.join([str(x) for x in sys.version_info[:2]]))"
  18. RESULT_VARIABLE result
  19. OUTPUT_VARIABLE version
  20. ERROR_QUIET
  21. OUTPUT_STRIP_TRAILING_WHITESPACE)
  22. if(version VERSION_LESS PYTHON_MINIMUM_REQUIRED)
  23. set(PYTHON_PREFER_EXECUTABLE "PYTHON_PREFER_EXECUTABLE-NOTFOUND")
  24. else()
  25. set(PYTHON_MINIMUM_REQUIRED ${version})
  26. set(PYTHON_EXACT EXACT)
  27. # Python3_ROOT_DIR ensures that location will be preferred by FindPython3.
  28. # On Linux, this has no impact as it will usually be /usr/bin
  29. # but on Windows it solve issues when both 32 and 64 bit versions are
  30. # installed, as version is not enough and FindPython3 might pick the
  31. # version not on %PATH%. Setting Python3_ROOT_DIR ensures we are using
  32. # the version we just tested.
  33. get_filename_component(PYTHON_PATH ${PYTHON_PREFER_EXECUTABLE} DIRECTORY)
  34. set(Python3_ROOT_DIR ${PYTHON_PATH})
  35. break()
  36. endif()
  37. endif()
  38. endforeach()
  39. find_package(Python3 ${PYTHON_MINIMUM_REQUIRED} REQUIRED ${PYTHON_EXACT})
  40. set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE})