Salome HOME
Updated copyright comment
[tools/configuration.git] / cmake / FindSalomeNumPySciPy.cmake
1 # Copyright (C) 2013-2024  CEA, EDF, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19 # Author: Roman NIKOLAEV
20 #
21 # Looking for an installation of NumPy and SciPy, and if found the following variables are set
22 #   NUMPY_INCLUDE_DIR  - NumPy header location
23 #   NUMPY_DEFINITIONS  - NumPy compiler flags
24 #   SCIPY_DEFINITIONS  - SciPy compiler flags
25 #   SCIPY_VERSION      - SciPy version
26 #
27
28 IF(SALOMEPYTHONINTERP_FOUND)   
29   # Numpy
30   EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c "import numpy ; import sys ; sys.stdout.write(numpy.get_include())" OUTPUT_VARIABLE NUMPY_INCLUDE_DIR ERROR_QUIET )
31   IF(NUMPY_INCLUDE_DIR)
32     SET(NUMPY_FOUND TRUE)
33   ENDIF(NUMPY_INCLUDE_DIR)
34   IF(NUMPY_FOUND)
35     SET(NUMPY_DEFINITIONS -DWITH_NUMPY)
36     MESSAGE(STATUS "NumPy found : ${NUMPY_INCLUDE_DIR}")
37   ELSE(NUMPY_FOUND)
38     MESSAGE(STATUS "NumPy not found.")
39   ENDIF(NUMPY_FOUND)
40
41   # SciPy detection
42   EXECUTE_PROCESS(COMMAND ${PYTHON_EXECUTABLE} -c "import scipy ; import sys ; sys.stdout.write(scipy.version.version)" OUTPUT_VARIABLE SCIPY_VERSION ERROR_QUIET )
43   IF(SCIPY_VERSION)
44     SET(SCIPY_FOUND TRUE)
45   ENDIF(SCIPY_VERSION)
46   IF(SCIPY_FOUND)
47     MESSAGE(STATUS "Scipy found : Version ${SCIPY_VERSION}")
48     SET(SCIPY_DEFINITIONS -DWITH_SCIPY)
49   ELSE(SCIPY_FOUND)
50     MESSAGE(STATUS "SciPy not found.")
51   ENDIF(SCIPY_FOUND)
52 ENDIF()