geom/src/GEOMGUI/Makefile.in

67 lines
2.0 KiB
Makefile
Raw Normal View History

2003-07-09 21:01:54 +06:00
# GEOM GEOMGUI : GUI for Geometry component
2003-05-12 21:24:23 +06:00
#
2003-07-09 21:01:54 +06:00
# Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
2003-05-12 21:24:23 +06:00
#
2003-07-09 21:01:54 +06:00
#
#
# File : Makefile.in
# Author : Marc Tajchman (CEA)
# Module : GEOM
# $Header$
2003-05-12 21:24:23 +06:00
top_srcdir=@top_srcdir@
2003-07-10 20:28:33 +06:00
top_builddir=../..
2003-05-12 21:24:23 +06:00
srcdir=@srcdir@
2003-07-09 21:01:54 +06:00
VPATH=.:@srcdir@:@top_srcdir@/idl
2003-05-12 21:24:23 +06:00
@COMMENCE@
# header files
EXPORT_HEADERS= GeometryGUI_Swig.hxx \
GeometryGUI_Swig.i
# Libraries targets
LIB = libGEOMGUI.la
2003-05-12 21:24:23 +06:00
LIB_SRC = GeometryGUI.cxx \
2003-10-03 15:45:03 +06:00
GeometryGUI_Swig.cxx
2003-05-12 21:24:23 +06:00
LIB_MOC = \
GeometryGUI.h \
LIB_CLIENT_IDL = SALOME_Exception.idl \
GEOM_Gen.idl \
GEOM_Shape.idl \
SALOMEDS.idl \
SALOMEDS_Attributes.idl \
SALOME_ModuleCatalog.idl \
SALOME_Component.idl \
LIB_SERVER_IDL =
# additionnal information to compil and link file
2003-07-10 20:28:33 +06:00
CPPFLAGS += $(QT_INCLUDES) $(VTK_INCLUDES) $(OGL_INCLUDES) $(OCC_INCLUDES) $(PYTHON_INCLUDES) -I${KERNEL_ROOT_DIR}/include/salome
CXXFLAGS += $(OCC_CXXFLAGS) -I${KERNEL_ROOT_DIR}/include/salome
2003-05-12 21:24:23 +06:00
2003-10-07 21:51:40 +06:00
LDFLAGS += -lOCCViewer -lVTKViewer -lSalomeObject -lSalomeGUI -lGEOMClient -lGEOMObject -lGEOMFiltersSelection -lGEOMBase $(OCC_KERNEL_LIBS) $(OCC_MODELER_LIBS) -L${KERNEL_ROOT_DIR}/lib/salome
2003-05-12 21:24:23 +06:00
@CONCLUDE@