Salome HOME
Patch for MacOS (from SALOME forum)
[tools/libbatch.git] / CMakeModules / FindLibbatchPython.cmake
1 # Copyright (C) 2013-2015  CEA/DEN, EDF R&D, 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: Adrien Bruneton
20 #
21
22 # Python libraries and interpreter detection for libBatch
23 # The interpreter is found first, and if OK, the corresponding libraries are searched.
24 # We ensure the version of the libraries matches the one of the interpreter. 
25 #
26
27 # 1. Load environment or any previously detected Python
28 IF(DEFINED ENV{PYTHON_ROOT_DIR})
29   FILE(TO_CMAKE_PATH "$ENV{PYTHON_ROOT_DIR}" _PYTHON_ROOT_DIR_ENV)
30   IF(APPLE)
31     SET(_dflt_value "${_PYTHON_ROOT_DIR_ENV}/Python.framework/Versions/Current")
32     SET(PYTHON_LIBRARY "${_PYTHON_ROOT_DIR_ENV}/Python.framework/Versions/Current/lib/libpython2.7.dylib")
33     SET(PYTHON_INCLUDE_DIR "${_PYTHON_ROOT_DIR_ENV}/Python.framework/Versions/Current/Headers")
34     LIST(APPEND CMAKE_PREFIX_PATH "${_dflt_value}")
35     FIND_PACKAGE(PythonLibs)
36     MESSAGE(STATUS "Mac Python: ${_dflt_value}")
37     MESSAGE(STATUS "Python libraries: ${PYTHON_LIBRARY}")
38     MESSAGE(STATUS "Python include dir: ${PYTHON_INCLUDE_DIR}")
39   ELSE(APPLE)
40     SET(_dflt_value "${_PYTHON_ROOT_DIR_ENV}")
41   ENDIF(APPLE)
42 ELSE()
43   # will be blank if no Python was previously loaded
44   SET(_dflt_value "${PYTHON_ROOT_DIR_EXP}")
45 ENDIF()
46
47 #   Make cache entry 
48 SET(PYTHON_ROOT_DIR "${_dflt_value}" CACHE PATH "Path to Python directory (interpreter and libs)")
49
50 # 2. Find package - config mode first (i.e. looking for XYZ-config.cmake)
51 IF(WIN32)
52  IF(CMAKE_BUILD_TYPE STREQUAL Debug)
53   SET(PythonInterp_FIND_VERSION _d)
54   SET(PYTHON_DEFINITIONS "-DHAVE_DEBUG_PYTHON")
55  ENDIF(CMAKE_BUILD_TYPE STREQUAL Debug)
56 ENDIF(WIN32)
57 IF(EXISTS "${PYTHON_ROOT_DIR}")
58   # Hope to find direclty a CMake config file there
59   SET(_CONF_DIR "${PYTHON_ROOT_DIR}/share/cmake") 
60
61   # Try find_package in config mode with a hard-coded guess. This
62   # has the priority.
63   FIND_PACKAGE(Python CONFIG QUIET PATHS "${_CONF_DIR}")
64   MARK_AS_ADVANCED(Python_DIR)
65     
66   IF (NOT PYTHON_FOUND)  
67     LIST(APPEND CMAKE_PREFIX_PATH "${PYTHON_ROOT_DIR}")
68   ELSE()
69     MESSAGE(STATUS "Found Python in CONFIG mode!")
70   ENDIF()
71 ENDIF()
72
73 # Otherwise try the standard way (module mode, with the standard CMake Find*** macro):
74 SALOME_FIND_PACKAGE(LibbatchPython PythonInterp MODULE)
75 SET(_found1 ${PYTHONINTERP_FOUND})
76
77 IF (PYTHONINTERP_FOUND)
78   # Now ensure we find the Python libraries matching the interpreter:
79   # This uses the variable PYTHON_EXECUTABLE
80   GET_FILENAME_COMPONENT(_python_dir "${PYTHON_EXECUTABLE}" PATH)
81   GET_FILENAME_COMPONENT(CMAKE_INCLUDE_PATH "${_python_dir}/../include/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}" ABSOLUTE)
82   GET_FILENAME_COMPONENT(CMAKE_LIBRARY_PATH "${_python_dir}/../lib" ABSOLUTE)
83   # For a Windows install, this might look more like this:
84   IF(WIN32)
85     LIST(APPEND CMAKE_LIBRARY_PATH "${_python_dir}/libs" ABSOLUTE)
86     LIST(APPEND CMAKE_INCLUDE_PATH "${_python_dir}/include" ABSOLUTE)
87   ENDIF()
88   # Override the EXACT and VERSION settings of the LibbatchPython module
89   # to force the next call to SALOME_FIND_PACKAGE() to find the exact matching
90   # version:
91   SET(_old_EXACT ${LibbatchPython_FIND_VERSION_EXACT})
92   SET(_old_VERSION "${LibbatchPython_FIND_VERSION}")
93   SET(LibbatchPython_FIND_VERSION_EXACT TRUE)
94   SET(LibbatchPython_FIND_VERSION "${PYTHON_VERSION_STRING}")
95   # Prepare call to FIND_PACKAGE(PythonLibs) and ensure priority is given to 
96   # the location found for the interpreter:
97   GET_FILENAME_COMPONENT(_tmp "${_python_dir}" PATH)
98   SALOME_FIND_PACKAGE(LibbatchPython PythonLibs MODULE)
99   # Restore variables:
100   SET(LibbatchPython_FIND_VERSION_EXACT ${_old_EXACT})
101   SET(LibbatchPython_FIND_VERSION "${_old_VERSION}")
102 ENDIF()
103
104 # Set the FOUND flag for LibbatchPython:
105 SET(LIBBATCHPYTHON_FOUND FALSE)
106 IF (_found1 AND PYTHONLIBS_FOUND)
107   SET(LIBBATCHPYTHON_FOUND TRUE)
108 ENDIF()
109
110 IF (LIBBATCHPYTHON_FOUND)
111   MESSAGE(STATUS "Python interpreter and Python libraries found:")
112   MESSAGE(STATUS "Python libraries: ${PYTHON_LIBRARY}")
113   MESSAGE(STATUS "Python include dir: ${PYTHON_INCLUDE_DIR}")
114
115   # 3. Set the root dir which was finally retained 
116   # For Python this is the grand-parent of the
117   # include directory:
118   GET_FILENAME_COMPONENT(_tmp_ROOT_DIR "${PYTHON_INCLUDE_DIR}" PATH)
119   IF(NOT WIN32)
120     GET_FILENAME_COMPONENT(_tmp_ROOT_DIR "${_tmp_ROOT_DIR}" PATH)
121   ENDIF()
122
123   # 4. Warn if CMake found something not located under ENV(XYZ_ROOT_DIR)
124   IF(DEFINED ENV{PYTHON_ROOT_DIR})
125     SALOME_CHECK_EQUAL_PATHS(_res "${_tmp_ROOT_DIR}" "${_PYTHON_ROOT_DIR_ENV}")
126     IF(NOT _res)
127       MESSAGE(WARNING "Python was found, but not a the path given by the "
128 "environment PYTHON_ROOT_DIR! Is the variable correctly set?")
129     ELSE()
130       MESSAGE(STATUS "Python found directory matches what was specified in the PYTHON_ROOT_DIR, all good!")    
131     ENDIF()
132   ENDIF()
133
134   # 5. Conflict detection
135   # 5.1  From another prerequisite using Python
136   IF(PYTHON_ROOT_DIR_EXP)
137       SALOME_CHECK_EQUAL_PATHS(_res "${_tmp_ROOT_DIR}" "${PYTHON_ROOT_DIR_EXP}") 
138       IF(NOT _res)
139          MESSAGE(WARNING "Warning: Python: detected version conflicts with a previously found Python!"
140                           "The two paths are " ${_tmp_ROOT_DIR} " vs " ${PYTHON_ROOT_DIR_EXP})
141       ELSE()
142           MESSAGE(STATUS "Python directory matches what was previously exposed by another prereq, all good!")
143       ENDIF()        
144   ENDIF()
145
146   # 6. Finally retained variable:
147   SET(PYTHON_ROOT_DIR "${_tmp_ROOT_DIR}")
148
149   # 7. Specifics
150   ## None here  
151 ELSE(LIBBATCHPYTHON_FOUND)
152   MESSAGE(STATUS "Python was only partially (or not at all) found .")  
153 ENDIF(LIBBATCHPYTHON_FOUND)
154