]> SALOME platform Git repositories - samples/hello.git/blob - adm_local/unix/config_files/check_GUI.m4
Salome HOME
Change build tools to be able to compile without GUI.
[samples/hello.git] / adm_local / unix / config_files / check_GUI.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 #  Check availability of Salome binary distribution
23 #
24 #  Author : Marc Tajchman (CEA, 2002)
25 #------------------------------------------------------------
26
27 AC_DEFUN([CHECK_GUI_MODULE],[
28 AC_REQUIRE([AC_LINKER_OPTIONS])dnl
29
30 LightGUI_ok=no
31 FullGUI_ok=no
32
33 GUI_LDFLAGS=""
34 GUI_CXXFLAGS=""
35
36 SALOME_GUI_DIR=""
37
38 AC_ARG_WITH(gui, 
39             [--with-gui=DIR root directory path of SALOME GUI installation],
40             [],
41             [with_gui=auto])
42
43 if test "${with_gui}" = "no"; then
44   SalomeGUI_need=no
45 else
46   # define SALOME_GUI_DIR
47   if test "${with_gui}" = "yes" -o "${with_gui}" = "auto"; then
48     SalomeGUI_need="$with_gui"
49     AC_MSG_RESULT(try \${GUI_ROOT_DIR}: ${GUI_ROOT_DIR})
50     if test "x${GUI_ROOT_DIR}" != "x" ; then
51       # GUI_ROOT_DIR environment variable defined
52       SALOME_GUI_DIR=${GUI_ROOT_DIR}
53     else
54       # search Salome binaries in PATH variable
55       AC_PATH_PROG(TEMP, SUITApp)
56       if test "x${TEMP}" != "x" ; then
57         AC_MSG_RESULT(SUITApp was found at : ${TEMP})
58         SALOME_BIN_DIR=`dirname ${TEMP}`
59         SALOME_GUI_DIR=`cd ${SALOME_BIN_DIR}/../..; pwd`
60       fi
61     fi 
62   else
63     # GUI directory defined by user
64     SalomeGUI_need=yes
65     SALOME_GUI_DIR="$with_gui"
66   fi
67
68   # check GUI installation
69   AC_CHECKING(for light GUI)
70   if test -f ${SALOME_GUI_DIR}/bin/salome/SUITApp ; then
71     LightGUI_ok=yes
72     AC_MSG_RESULT(Using SALOME GUI distribution in ${SALOME_GUI_DIR})
73         
74     GUI_ROOT_DIR=${SALOME_GUI_DIR}
75
76     GUI_LDFLAGS=-L${SALOME_GUI_DIR}/lib${LIB_LOCATION_SUFFIX}/salome
77     GUI_CXXFLAGS=-I${SALOME_GUI_DIR}/include/salome
78
79     AC_CHECKING(for full GUI)
80     if test -f ${SALOME_GUI_DIR}/bin/salome/SALOME_Session_Server ; then
81       FullGUI_ok=yes
82     fi
83   else
84     AC_MSG_WARN("Cannot find compiled SALOME GUI distribution")
85   fi
86   AC_MSG_RESULT(for light GUI: ${LightGUI_ok})
87   AC_MSG_RESULT(for full GUI: ${FullGUI_ok})
88 fi
89
90 AC_SUBST(GUI_LDFLAGS)
91 AC_SUBST(GUI_CXXFLAGS)
92 AC_SUBST(GUI_ROOT_DIR)
93  
94 ])dnl
95
96