Salome HOME
Compatibility release compilation on windows
[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   IF(CMAKE_BUILD_TYPE STREQUAL Release)
24     FIND_PROGRAM(PYTHON_EXECUTABLE python)
25   ELSE(CMAKE_BUILD_TYPE STREQUAL Release)
26     FIND_PROGRAM(PYTHON_EXECUTABLE python_d)
27   ENDIF(CMAKE_BUILD_TYPE STREQUAL Release)
28 ELSE(WINDOWS)
29   FIND_PROGRAM(PYTHON_EXECUTABLE python)
30 ENDIF(WINDOWS)
31
32 EXECUTE_PROCESS(
33   COMMAND ${PYTHON_EXECUTABLE} -c "import sys; sys.stdout.write(sys.version[:3])"
34   OUTPUT_VARIABLE PYTHON_VERSION
35   )
36
37 SET(PYTHON_ROOT ${PYTHON_EXECUTABLE})
38 GET_FILENAME_COMPONENT(PYTHON_ROOT ${PYTHON_ROOT} PATH)
39 GET_FILENAME_COMPONENT(PYTHON_ROOT ${PYTHON_ROOT} PATH)
40
41 FIND_PATH(PYTHON_INCLUDE_PATH Python.h PATHS ${PYTHON_ROOT}/include ${PYTHON_ROOT}/include/python${PYTHON_VERSION})
42
43 IF(WINDOWS)
44   STRING(REPLACE "." "" PYTHON_VERSION_WITHOUT_DOT ${PYTHON_VERSION})
45   IF(CMAKE_BUILD_TYPE STREQUAL Release)
46     FIND_LIBRARY(PYTHON_LIBRARIES python${PYTHON_VERSION_WITHOUT_DOT} ${PYTHON_ROOT}/libs)
47   ELSE(CMAKE_BUILD_TYPE STREQUAL Release)
48     FIND_LIBRARY(PYTHON_LIBRARIES python${PYTHON_VERSION_WITHOUT_DOT}_d ${PYTHON_ROOT}/libs)
49   ENDIF(CMAKE_BUILD_TYPE STREQUAL Release)
50 ELSE(WINDOWS)
51   FIND_LIBRARY(PYTHON_LIBRARIES python${PYTHON_VERSION} ${PYTHON_ROOT}/lib)
52 ENDIF(WINDOWS)
53
54 SET(PYTHON_INCLUDES -I${PYTHON_INCLUDE_PATH})
55 SET(PYTHON_LIBS ${PYTHON_LIBRARIES})
56
57 IF(WINDOWS)
58   IF(CMAKE_BUILD_TYPE STREQUAL Release)
59   ELSE(CMAKE_BUILD_TYPE STREQUAL Release)
60     SET(PYTHON_INCLUDES ${PYTHON_INCLUDES} -DHAVE_DEBUG_PYTHON)
61   ENDIF(CMAKE_BUILD_TYPE STREQUAL Release)
62 ENDIF(WINDOWS)