]> SALOME platform Git repositories - samples/atomgen.git/blob - adm_local/unix/config_files/check_ATOMGEN.m4
Salome HOME
Example of a python component from Salome tutorial
[samples/atomgen.git] / adm_local / unix / config_files / check_ATOMGEN.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_ATOMGEN],[
23
24 AC_CHECKING(for ATOMGEN)
25
26 ATOMGEN_ok=no
27
28 AC_ARG_WITH(atomgen,
29             [  --with-atomgen=DIR root directory path of ATOMGEN module installation ],
30             ATOMGEN_DIR="$withval",ATOMGEN_DIR="")
31
32 if test "x$ATOMGEN_DIR" == "x" ; then
33    # no --with-atomgen-dir option used
34    if test "x$ATOMGEN_ROOT_DIR" != "x" ; then
35       # ATOMGEN_ROOT_DIR environment variable defined
36       ATOMGEN_DIR=$ATOMGEN_ROOT_DIR
37    fi
38 fi
39
40 if test -f ${ATOMGEN_DIR}/bin/salome/ATOMGEN.py ; then
41    ATOMGEN_ok=yes
42    AC_MSG_RESULT(Using ATOMGEN module distribution in ${ATOMGEN_DIR})
43
44    if test "x$ATOMGEN_ROOT_DIR" == "x" ; then
45       ATOMGEN_ROOT_DIR=${ATOMGEN_DIR}
46    fi
47    AC_SUBST(ATOMGEN_ROOT_DIR)
48 else
49    AC_MSG_WARN("Cannot find ATOMGEN module sources")
50 fi
51   
52 AC_MSG_RESULT(for ATOMGEN: $ATOMGEN_ok)
53  
54 ])dnl
55