Salome HOME
Example of light module from Salome tutorial
[samples/atomic.git] / ATOMIC_SRC / adm_local / unix / config_files / check_ATOMIC.m4
1 #  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21
22 AC_DEFUN([CHECK_ATOMIC],[
23
24 AC_CHECKING(for ATOMIC)
25
26 ATOMIC_ok=no
27
28 AC_ARG_WITH(atomic,
29             [  --with-atomic=DIR root directory path of ATOMIC module installation ],
30             ATOMIC_DIR="$withval",ATOMIC_DIR="")
31
32 if test "x$ATOMIC_DIR" == "x" ; then
33    # no --with-atomic-dir option used
34    if test "x$ATOMIC_ROOT_DIR" != "x" ; then
35       # ATOMIC_ROOT_DIR environment variable defined
36       ATOMIC_DIR=$ATOMIC_ROOT_DIR
37    fi
38 fi
39
40 if test -f ${ATOMIC_DIR}/lib/salome/libATOMIC.so ; then
41    ATOMIC_ok=yes
42    AC_MSG_RESULT(Using ATOMIC module distribution in ${ATOMIC_DIR})
43
44    if test "x$ATOMIC_ROOT_DIR" == "x" ; then
45       ATOMIC_ROOT_DIR=${ATOMIC_DIR}
46    fi
47   
48    ATOMIC_LDFLAGS=-L${ATOMIC_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
49    ATOMIC_CXXFLAGS=-I${ATOMIC_DIR}/include/salome
50 else
51    AC_MSG_WARN("Cannot find valid ATOMIC module installation)
52 fi
53   
54 AC_MSG_RESULT(for ATOMIC: $ATOMIC_ok)
55
56 AC_SUBST(ATOMIC_ROOT_DIR)
57 AC_SUBST(ATOMIC_LDFLAGS)
58 AC_SUBST(ATOMIC_CXXFLAGS)
59  
60 ])dnl
61