FindPython: Add support for 'PyPy'

This commit is contained in:
Marc Chevrier
2020-05-01 15:03:04 +02:00
parent 6556e587ef
commit c1ef70d4d1
10 changed files with 331 additions and 10 deletions
+6
View File
@@ -86,6 +86,7 @@ This module will set the following variables in your project
* Anaconda
* Canopy
* IronPython
* PyPy
``Python3_STDLIB``
Standard platform independent installation directory.
@@ -148,6 +149,8 @@ This module will set the following variables in your project
Python 3 minor version.
``Python3_VERSION_PATCH``
Python 3 patch version.
``Python3_PyPy_VERSION``
Python 3 PyPy version.
``Python3_NumPy_FOUND``
System has the NumPy.
``Python3_NumPy_INCLUDE_DIRS``
@@ -278,6 +281,9 @@ Hints
* ``IronPython``: This implementation use the ``CSharp`` language for
``.NET Framework`` on top of the `Dynamic Language Runtime` (``DLR``).
See `IronPython <http://ironpython.net>`_.
* ``PyPy``: This implementation use ``RPython`` language and
``RPython translation toolchain`` to produce the python interpreter.
See `PyPy <https://www.pypy.org>`_.
The default value is the list: ``CPython``, ``IronPython``.