Salome HOME
a151c54a9b7058994413d1bcfd91c457590f36b9
[modules/kernel.git] / salome_adm / cmake_files / FindOmniORBPy.cmake
1 # - Find OmniORB4 Python backend
2 #
3 # Sets the following variables:
4 # OMNIORB_PYTHON_BACKEND - path to the Python backend
5 # OMNIORBPY_PYTHONPATH   - Python path to the OmniORB modules
6 #
7 # Detection is made by looking for  
8 #    lib/python${_py_version}/site-packages/omniidl_be/python.py
9 #
10
11 ################################################################
12 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
13 #
14 # This library is free software; you can redistribute it and/or
15 # modify it under the terms of the GNU Lesser General Public
16 # License as published by the Free Software Foundation; either
17 # version 2.1 of the License.
18 #
19 # This library is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22 # Lesser General Public License for more details.
23 #
24 # You should have received a copy of the GNU Lesser General Public
25 # License along with this library; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
27 #
28 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
29 #
30 ################################################################
31
32 ##############################################################################
33 # find python back-end
34 ##############################################################################
35
36 SET(_py_version "${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}")
37 FIND_PATH(OMNIORB_PYTHON_BACKEND
38   NAMES python.py
39   PATHS "${OMNIORBPY_ROOT_DIR}" "/usr" 
40   PATH_SUFFIXES "/lib/python${_py_version}/site-packages/omniidl_be" "/lib/omniidl/omniidl_be" "/lib/python/omniidl_be"
41   DOC "Path to python-backend directory (omniidl_be) including python.py file")
42
43 ##############################################################################
44 # Cook our stuff
45 ##############################################################################
46 MARK_AS_ADVANCED(OMNIORB_PYTHON_BACKEND)
47   
48 SET(OMNIORB_IDLPYFLAGS -bpython)
49 IF (OMNIORB_PYTHON_BACKEND) 
50   SET(OMNIORB_IDLPYFLAGS "-p ${OMNIORB_PYTHON_BACKEND} ${OMNIORB_IDLPYFLAGS}")
51 ENDIF()
52 SET(IDLPYFLAGS ${OMNIORB_IDLPYFLAGS})
53
54 GET_FILENAME_COMPONENT(OMNIORBPY_PYTHONPATH "${OMNIORB_PYTHON_BACKEND}" PATH)
55
56 # Handle standard arguments:
57 INCLUDE(FindPackageHandleStandardArgs)
58 FIND_PACKAGE_HANDLE_STANDARD_ARGS(OmniORBPy REQUIRED_VARS OMNIORB_PYTHON_BACKEND)