diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2019-01-25 09:17:58 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-25 09:18:11 (GMT) |
commit | 0d8d7a6896c5065c4baa1c4f5489e2424535ce6a (patch) | |
tree | ed18d0cda5bfefb5bfb2949fa48111f768baf636 /Modules/FindPython2.cmake | |
parent | d47aa71b395b9d2d641d928ae90f10a135f22b49 (diff) | |
parent | 513e77550daaac083cb13b3df53be955a7d0b429 (diff) | |
download | CMake-0d8d7a6896c5065c4baa1c4f5489e2424535ce6a.zip CMake-0d8d7a6896c5065c4baa1c4f5489e2424535ce6a.tar.gz CMake-0d8d7a6896c5065c4baa1c4f5489e2424535ce6a.tar.bz2 |
Merge topic 'FindPython-numpy'
513e77550d FindPython: Introduce NumPy component
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2734
Diffstat (limited to 'Modules/FindPython2.cmake')
-rw-r--r-- | Modules/FindPython2.cmake | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Modules/FindPython2.cmake b/Modules/FindPython2.cmake index b770708..0bb7b28 100644 --- a/Modules/FindPython2.cmake +++ b/Modules/FindPython2.cmake @@ -14,11 +14,12 @@ Three components are supported: * ``Compiler``: search for Python 2 compiler. Only offered by IronPython. * ``Development``: search for development artifacts (include directories and libraries) +* ``NumPy``: search for NumPy include directories. If no ``COMPONENTS`` is specified, ``Interpreter`` is assumed. -To ensure consistent versions between components ``Interpreter``, ``Compiler`` -and ``Development``, specify all components at the same time:: +To ensure consistent versions between components ``Interpreter``, ``Compiler``, +``Development`` and ``NumPy``, specify all components at the same time:: find_package (Python2 COMPONENTS Interpreter Development) @@ -40,6 +41,8 @@ This module defines the following :ref:`Imported Targets <Imported Targets>` Python 2 compiler. Target defined if component ``Compiler`` is found. ``Python2::Python`` Python 2 library. Target defined if component ``Development`` is found. +``Python2::NumPy`` + NumPy library for Python 2. Target defined if component ``NumPy`` is found. Result Variables ^^^^^^^^^^^^^^^^ @@ -105,6 +108,12 @@ This module will set the following variables in your project Python 2 minor version. ``Python2_VERSION_PATCH`` Python 2 patch version. +``Python2_NumPy_FOUND`` + System has the NumPy. +``Python2_NumPy_INCLUDE_DIRS`` + The NumPy include directries. +``Python2_NumPy_VERSION`` + The NumPy version. Hints ^^^^^ |