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