Salome HOME
33992fe0a94d974e3d47f8a42559c80285247863
[modules/geom.git] / adm_local / unix / config_files / check_GEOM.m4
1 dnl Copyright (C) 2007-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 dnl
3 dnl Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 dnl CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 dnl
6 dnl This library is free software; you can redistribute it and/or
7 dnl modify it under the terms of the GNU Lesser General Public
8 dnl License as published by the Free Software Foundation; either
9 dnl version 2.1 of the License, or (at your option) any later version.
10 dnl
11 dnl This library is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl Lesser General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU Lesser General Public
17 dnl License along with this library; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 dnl
20 dnl See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 dnl
22
23 # Check availability of Geom binary distribution
24 #
25 # Author : Nicolas REJNERI (OPEN CASCADE, 2003)
26 #
27
28 AC_DEFUN([CHECK_GEOM],[
29
30 AC_CHECKING(for Geom)
31
32 Geom_ok=no
33
34 GEOM_LDFLAGS=""
35 GEOM_CXXFLAGS=""
36
37 AC_ARG_WITH(geom,
38             [  --with-geom=DIR root directory path of GEOM installation ],
39             GEOM_DIR="$withval",GEOM_DIR="")
40
41 if test "x$GEOM_DIR" == "x" ; then
42
43 # no --with-geom-dir option used
44
45    if test "x$GEOM_ROOT_DIR" != "x" ; then
46
47     # GEOM_ROOT_DIR environment variable defined
48       GEOM_DIR=$GEOM_ROOT_DIR
49
50    else
51
52     # search Geom binaries in PATH variable
53       AC_PATH_PROG(TEMP, libGEOM_Swig.py)
54       if test "x$TEMP" != "x" ; then
55          GEOM_BIN_DIR=`dirname $TEMP`
56          GEOM_DIR=`dirname $GEOM_BIN_DIR`
57       fi
58       
59    fi
60
61 fi
62
63 if test -f ${GEOM_DIR}/bin/salome/geompy.py ; then
64    Geom_ok=yes
65    AC_MSG_RESULT(Using Geom module distribution in ${GEOM_DIR})
66
67    if test "x$GEOM_ROOT_DIR" == "x" ; then
68       GEOM_ROOT_DIR=${GEOM_DIR}
69    fi
70    AC_SUBST(GEOM_ROOT_DIR)
71
72    GEOM_LDFLAGS=-L${GEOM_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
73    GEOM_CXXFLAGS=-I${GEOM_DIR}/include/salome
74
75    AC_SUBST(GEOM_LDFLAGS)
76    AC_SUBST(GEOM_CXXFLAGS)
77
78 else
79    AC_MSG_WARN("Cannot find compiled Geom module distribution")
80 fi
81
82 AC_MSG_RESULT(for Geom: $Geom_ok)
83  
84 ])dnl
85