]> SALOME platform Git repositories - modules/kernel.git/blob - salome_adm/cmake_files/FindPYTHON.cmake
Salome HOME
merge from branch BR_V5_DEV
[modules/kernel.git] / salome_adm / cmake_files / FindPYTHON.cmake
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 IF(WINDOWS)
23   FIND_PROGRAM(PYTHON_EXECUTABLE python_d)
24 ELSE(WINDOWS)
25   FIND_PROGRAM(PYTHON_EXECUTABLE python)
26 ENDIF(WINDOWS)
27
28 EXECUTE_PROCESS(
29   COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(sys.version[:3])"
30   OUTPUT_VARIABLE PYTHON_VERSION
31   )
32
33 SET(PYTHON_ROOT ${PYTHON_EXECUTABLE})
34 GET_FILENAME_COMPONENT(PYTHON_ROOT ${PYTHON_ROOT} PATH)
35 GET_FILENAME_COMPONENT(PYTHON_ROOT ${PYTHON_ROOT} PATH)
36
37 FIND_PATH(PYTHON_INCLUDE_PATH Python.h PATHS ${PYTHON_ROOT}/include ${PYTHON_ROOT}/include/python${PYTHON_VERSION})
38
39 IF(WINDOWS)
40   STRING(REPLACE "." "" PYTHON_VERSION_WITHOUT_DOT ${PYTHON_VERSION})
41   FIND_LIBRARY(PYTHON_LIBRARIES python${PYTHON_VERSION_WITHOUT_DOT}_d ${PYTHON_ROOT}/libs)
42 ELSE(WINDOWS)
43   FIND_LIBRARY(PYTHON_LIBRARIES python${PYTHON_VERSION} ${PYTHON_ROOT}/lib)
44 ENDIF(WINDOWS)
45
46 SET(PYTHON_INCLUDES -I${PYTHON_INCLUDE_PATH})
47 SET(PYTHON_LIBS ${PYTHON_LIBRARIES})
48
49 IF(WINDOWS)
50   SET(PYTHON_INCLUDES ${PYTHON_INCLUDES} -DHAVE_DEBUG_PYTHON)
51 ENDIF(WINDOWS)