]> SALOME platform Git repositories - plugins/netgenplugin.git/blob - adm_local/unix/config_files/check_NETGENPLUGIN.m4
Salome HOME
Update copyright information
[plugins/netgenplugin.git] / adm_local / unix / config_files / check_NETGENPLUGIN.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 #------------------------------------------------------------
23 #  Check availability of Salome NETGEN mesh plugin module
24 #   distribution
25 #------------------------------------------------------------
26
27 AC_DEFUN([CHECK_NETGENPLUGIN],[
28
29 AC_CHECKING(for NETGEN mesh plugin)
30
31 NGplugin_ok=no
32
33 NETGENPLUGIN_LDLAGS=""
34 NETGENPLUGIN_CXXFLAGS=""
35
36 AC_ARG_WITH(netgenplugin,
37             [  --with-netgenplugin=DIR root directory path of NETGEN mesh plugin installation ],
38             NETGENPLUGIN_DIR="$withval",NETGENPLUGIN_DIR="")
39
40 if test "x$NETGENPLUGIN_DIR" == "x" ; then
41
42 # no --with-netgenplugin-dir option used
43
44    if test "x$NETGENPLUGIN_ROOT_DIR" != "x" ; then
45
46     # NETGENPLUGIN_ROOT_DIR environment variable defined
47       NETGENPLUGIN_DIR=$NETGENPLUGIN_ROOT_DIR
48
49    fi
50
51 fi
52
53 if test -f ${NETGENPLUGIN_DIR}/lib${LIB_LOCATION_SUFFIX}/salome/libNETGENEngine.so ; then
54    NGplugin_ok=yes
55    AC_MSG_RESULT(Using NETGEN mesh plugin distribution in ${NETGENPLUGIN_DIR})
56
57    if test "x$NETGENPLUGIN_ROOT_DIR" == "x" ; then
58       NETGENPLUGIN_ROOT_DIR=${NETGENPLUGIN_DIR}
59    fi
60    AC_SUBST(NETGENPLUGIN_ROOT_DIR)
61
62    NETGENPLUGIN_LDFLAGS=-L${NETGENPLUGIN_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
63    NETGENPLUGIN_CXXFLAGS=-I${NETGENPLUGIN_DIR}/include/salome
64
65    AC_SUBST(NETGENPLUGIN_LDFLAGS)
66    AC_SUBST(NETGENPLUGIN_CXXFLAGS)
67
68 else
69    AC_MSG_WARN("Cannot find compiled NETGEN mesh plugin distribution")
70 fi
71
72 AC_MSG_RESULT(for NETGEN mesh plugin: $NGplugin_ok)
73  
74 ])dnl