Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / PIPELINE / Makefile.in
1 #  VISU OBJECT : interactive object for VISU entities implementation
2 #
3 #  Copyright (C) 2003  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 #
23 #
24 #  File   : Makefile.in
25 #  Module : VISU
26
27 top_srcdir=@top_srcdir@
28 top_builddir=../..
29 srcdir=@srcdir@
30 VPATH=.:@srcdir@
31
32
33 @COMMENCE@
34
35 EXPORT_HEADERS = \
36         VISU_PipeLine.hxx \
37         VISU_PipeLineUtils.hxx \
38         VISU_MeshPL.hxx \
39         VISU_ScalarMapPL.hxx \
40         VISU_CutPlanesPL.hxx \
41         VISU_CutLinesPL.hxx \
42         VISU_IsoSurfacesPL.hxx \
43         VISU_DeformedShapePL.hxx \
44         VISU_VectorsPL.hxx \
45         VISU_StreamLinesPL.hxx \
46         VISU_LookupTable.hxx \
47         VISU_ScalarBarActor.hxx \
48         VISU_Extractor.hxx \
49         VISU_FieldTransform.hxx \
50         VISU_UsedPointsFilter.hxx \
51         VISU_GaussPointsPL.hxx \
52         VISU_Plot3DPL.hxx \
53         VISU_OpenGLPointSpriteMapper.hxx \
54         VISU_ImplicitFunctionWidget.hxx \
55         SALOME_ExtractGeometry.h \
56         VISU_ScalarBarCtrl.hxx \
57         VISU_PlanesWidget.hxx \
58         VISU_SphereWidget.hxx \
59         VISU_WidgetCtrl.hxx \
60         VISU_ScalarMapOnDeformedShapePL.hxx
61
62 # Libraries targets
63
64 LIB = libVisuPipeLine.la
65 LIB_SRC = \
66         VISU_PipeLine.cxx \
67         VISU_PipeLineUtils.cxx \
68         VISU_MeshPL.cxx \
69         VISU_ScalarMapPL.cxx \
70         VISU_CutPlanesPL.cxx \
71         VISU_CutLinesPL.cxx \
72         VISU_IsoSurfacesPL.cxx \
73         VISU_DeformedShapePL.cxx \
74         VISU_VectorsPL.cxx \
75         VISU_StreamLinesPL.cxx \
76         VISU_LookupTable.cxx \
77         VISU_ScalarBarActor.cxx \
78         VISU_Extractor.cxx \
79         VISU_FieldTransform.cxx \
80         VISU_UsedPointsFilter.cxx \
81         VISU_GaussPointsPL.cxx \
82         VISU_Plot3DPL.cxx \
83         SALOME_ExtractGeometry.cxx \
84         VISU_OpenGLPointSpriteMapper.cxx \
85         VISU_ImplicitFunctionWidget.cxx \
86         VISU_PlanesWidget.cxx \
87         VISU_SphereWidget.cxx \
88         VISU_WidgetCtrl.cxx \
89         VISU_ScalarBarCtrl.cxx \
90         VISU_ScalarMapOnDeformedShapePL.cxx
91
92 # Executables targets
93
94 BIN = VISUPipeLine VISU_img2vti
95 BIN_SRC =
96
97 CPPFLAGS+= \
98         $(VTK_INCLUDES) \
99         -I${KERNEL_ROOT_DIR}/include/salome \
100         -I${GUI_ROOT_DIR}/include/salome \
101         -I${MED_ROOT_DIR}/include/salome \
102         $(HDF5_INCLUDES) $(BOOST_CPPFLAGS)
103
104 LDFLAGS+= \
105         $(VTK_LIBS) -lVTKViewer -lVisuConvertor \
106         -L${KERNEL_ROOT_DIR}/lib/salome -lSALOMELocalTrace \
107         -L${GUI_ROOT_DIR}/lib/salome \
108         -L${MED_ROOT_DIR}/lib/salome
109
110 LDFLAGSFORBIN=$(LDFLAGS) -lOpUtil -lMEDWrapper -lMEDWrapper_V2_2 -lMEDWrapper_V2_1 -lMEDWrapperBase -lmed_V2_1 -lsuit -lqtx -lSALOMEBasics
111
112 @CONCLUDE@