Salome HOME
abff8afc0f845e7a73489b0d19d4c51bfa6e0065
[tools/medcoupling.git] / adm_local / unix / config_files / check_MEDCOUPLING.m4
1 dnl Copyright (C) 2007-2020  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 MEDCOUPLING binary distribution
24 #
25 # Author : Roman NIKOLAEV (OPEN CASCADE, 2016)
26 #
27
28 AC_DEFUN([CHECK_MEDCOUPLING],[
29 AC_REQUIRE([AC_LINKER_OPTIONS])dnl
30
31 AC_CHECKING(for MEDCOUPLING)
32
33 MEDCOUPLING_ok=no
34
35 MEDCOUPLING_LDFLAGS=""
36 MEDCOUPLING_CXXFLAGS=""
37
38 AC_ARG_WITH(medcoupling,
39             [  --with-medcoupling=DIR root directory path of MEDCOUPLING installation ],
40             MEDCOUPLING_DIR="$withval",MEDCOUPLING_DIR="")
41
42 if test "x${MEDCOUPLING_DIR}" == "x" ; then
43   AC_MSG_RESULT(for \${MEDCOUPLING_ROOT_DIR}: ${MEDCOUPLING_ROOT_DIR})
44
45    # --with-medcoupling option is not used
46    if test "x${MEDCOUPLING_ROOT_DIR}" != "x" ; then
47     # MEDCOUPLING_ROOT_DIR environment variable defined
48       MEDCOUPLING_DIR=${MEDCOUPLING_ROOT_DIR}
49    fi
50
51 fi
52
53 if test -f ${MEDCOUPLING_DIR}/include/InterpKernelValue.hxx ; then
54    AC_MSG_RESULT(Using MEDCOUPLING module distribution in ${MEDCOUPLING_DIR})
55    MEDCOUPLING_ok=yes
56
57    AC_SUBST(MEDCOUPLING_ROOT_DIR)
58
59    MEDCOUPLING_LDFLAGS=-L${MEDCOUPLING_DIR}/lib${LIB_LOCATION_SUFFIX}
60    MEDCOUPLING_CXXFLAGS=-I${MEDCOUPLING_DIR}/include
61
62    AC_SUBST(MEDCOUPLING_LDFLAGS)
63    AC_SUBST(MEDCOUPLING_CXXFLAGS)
64
65 else
66    AC_MSG_WARN("Cannot find MCOUPLING module sources")
67 fi
68
69 AC_MSG_RESULT(for MEDCOUPLING: $MEDCOUPLING_ok)
70
71 ])dnl