Salome HOME
4c0cdb6e4399e90686bb4b0ba219444859a02928
[modules/smesh.git] / adm_local / unix / config_files / check_SMESH.m4
1 dnl  Copyright (C) 2007-2008  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.
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 # Check availability of SMesh binary distribution
23 #
24 # Author : Nicolas REJNERI (OPEN CASCADE, 2003)
25 #
26
27 AC_DEFUN([CHECK_SMESH],[
28
29 AC_CHECKING(for SMesh)
30
31 SMesh_ok=no
32
33 SMESH_LDFLAGS=""
34 SMESH_CXXFLAGS=""
35
36 AC_ARG_WITH(smesh,
37             [  --with-smesh=DIR root directory path of SMESH installation ],
38             SMESH_DIR="$withval",SMESH_DIR="")
39
40 if test "x$SMESH_DIR" == "x" ; then
41
42 # no --with-smesh option used
43
44    if test "x$SMESH_ROOT_DIR" != "x" ; then
45
46     # SMESH_ROOT_DIR environment variable defined
47       SMESH_DIR=$SMESH_ROOT_DIR
48
49    else
50
51     # search SMESH binaries in PATH variable
52       #CCRTAC_PATH_PROG(TEMP, libSMESH_Swig.py)
53       #AC_PATH_PROG(TEMP, MED_Test)
54       AC_PATH_PROG(TEMP, smesh.py)
55       if test "x$TEMP" != "x" ; then
56          SMESH_BIN_DIR=`dirname $TEMP`
57          SMESH_DIR=`dirname $SMESH_BIN_DIR`
58       fi
59       
60    fi
61
62 fi
63
64 #CCRTif test -f ${SMESH_DIR}/bin/salome/libSMESH_Swig.py ; then
65 #if test -f ${SMESH_DIR}/bin/salome/MED_Test ; then
66 if test -f ${SMESH_DIR}/bin/salome/smesh.py ; then
67    SMesh_ok=yes
68    AC_MSG_RESULT(Using SMesh module distribution in ${SMESH_DIR})
69
70    if test "x$SMESH_ROOT_DIR" == "x" ; then
71       SMESH_ROOT_DIR=${SMESH_DIR}
72    fi
73    AC_SUBST(SMESH_ROOT_DIR)
74
75    SMESH_LDFLAGS=-L${SMESH_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
76    SMESH_CXXFLAGS=-I${SMESH_DIR}/include/salome
77
78    AC_SUBST(SMESH_LDFLAGS)
79    AC_SUBST(SMESH_CXXFLAGS)   
80
81 else
82    AC_MSG_WARN("Cannot find compiled SMesh module distribution")
83 fi
84
85 AC_MSG_RESULT(for SMesh: $SMesh_ok)
86  
87 ])dnl
88