Salome HOME
930cea2dc86f12d24c1b9eed9aa587e977979367
[samples/pylight.git] / adm_local / unix / config_files / check_PYLIGHT.m4
1 # Copyright (C) 2009-2019  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
20 #  Author : Roman NIKOLAEV Open CASCADE S.A.S. (roman.nikolaev@opencascade.com)
21 #  Date   : 13/04/2009
22
23 #------------------------------------------------------------
24
25 AC_DEFUN([CHECK_PYLIGHT],[
26
27 AC_CHECKING(for PyLight)
28
29 PyLight_ok=no
30
31 PYLIGHT_LDFLAGS=""
32 PYLIGHT_CXXFLAGS=""
33
34 AC_ARG_WITH(gui,
35             --with-py-light=DIR root directory path of PYLIGHT installation,
36             PYLIGHT_DIR="$withval",PYLIGHT_DIR="")
37
38 if test "x$PYLIGHT_DIR" = "x" ; then
39
40 # no --with-light option used
41
42   if test "x$PYLIGHT_ROOT_DIR" != "x" ; then
43
44     # PYLIGHT_ROOT_DIR environment variable defined
45     LIGHT_DIR=$PYLIGHT_ROOT_DIR
46
47   else
48
49     # search PYLIGHT binaries in PATH variable
50     AC_PATH_PROG(TEMP, PYLIGHTGUI.py)
51     if test "x$TEMP" != "x" ; then
52       PYLIGHT_BIN_DIR=`dirname $TEMP`
53       PYLIGHT_DIR=`dirname $PYLIGHT_BIN_DIR`
54     fi
55
56   fi
57 #
58 fi
59
60 if test -f ${PYLIGHT_DIR}/lib/salome/PYLIGHTGUI.py  ; then
61   PyLight_ok=yes
62   AC_MSG_RESULT(Using PYLIGHT distribution in ${PYLIGHT_DIR})
63
64   if test "x$PYLIGHT_ROOT_DIR" == "x" ; then
65     PYLIGHT_ROOT_DIR=${PYLIGHT_DIR}
66   fi
67   AC_SUBST(PYLIGHT_ROOT_DIR)
68 else
69   AC_MSG_WARN("Cannot find compiled PYLIGHT distribution")
70 fi
71   
72 AC_MSG_RESULT(for PYLIGHT: $PyLight_ok)
73  
74 ])dnl
75