Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/smesh.git] / src / OBJECT / Makefile.in
1 #  SMESH OBJECT : interactive object for SMESH visualization
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 : SMESH
26
27 top_srcdir=@top_srcdir@
28 top_builddir=../..
29 srcdir=@srcdir@
30 VPATH=.:@srcdir@:@top_srcdir@/idl:$(top_builddir)/idl
31
32 @COMMENCE@
33
34 EXPORT_HEADERS = \
35         SMESH_Actor.h \
36         SMESH_Object.h \
37         SMESH_ObjectDef.h \
38         SMESH_ActorUtils.h
39
40
41 # Libraries targets
42
43 LIB = libSMESHObject.la
44 LIB_SRC = \
45           SMESH_Object.cxx \
46           SMESH_DeviceActor.cxx \
47           SMESH_Actor.cxx \
48           SMESH_ExtractGeometry.cxx \
49           SMESH_ActorUtils.cxx
50
51 LIB_CLIENT_IDL = SALOME_Exception.idl \
52                  SALOME_GenericObj.idl \
53                  SALOME_Comm.idl \
54                  MED.idl \
55                  SMESH_Mesh.idl \
56                  SMESH_Group.idl \
57                  SALOMEDS.idl \
58                  SMESH_Gen.idl \
59                  GEOM_Gen.idl \
60                  SMESH_Hypothesis.idl
61
62
63 # Executables targets
64 BIN = 
65 BIN_SRC =
66
67 CPPFLAGS+= \
68         -I${KERNEL_ROOT_DIR}/include/salome \
69         -I${GUI_ROOT_DIR}/include/salome \
70         $(OCC_INCLUDES) \
71         $(VTK_INCLUDES) \
72         $(BOOST_CPPFLAGS) \
73         $(QT_INCLUDES)
74 LDFLAGS+= \
75         -L${KERNEL_ROOT_DIR}/lib/salome \
76         -L${GUI_ROOT_DIR}/lib/salome \
77         $(OCC_KERNEL_LIBS) \
78         $(VTK_LIBS) \
79         -lSMDS \
80         -lSMESHClient \
81         -lSalomeApp \
82         -lSalomeObject \
83         -lSMESHControls
84
85 LDFLAGSFORBIN += \
86         -L${GEOM_ROOT_DIR}/lib/salome \
87         -L${MED_ROOT_DIR}/lib/salome \
88         $(LDFLAGS) \
89         -lqtx \
90         -lsuit \
91         -lstd \
92         -lCAM \
93         -lLightApp \
94         -lObjBrowser \
95         -lSalomePrs \
96         -lSalomeDS \
97         -lTOOLSDS \
98         -lSalomeDSImpl \
99         -lSalomeDSClient \
100         -lSalomeHDFPersist \
101         -lSalomeResourcesManager \
102         -lSalomeLifeCycleCORBA \
103         -lSalomeNotification \
104         -lSalomeContainer \
105         -lSalomeCatalog \
106         -lSalomeSession \
107         -lRegistry \
108         -lNMTTools \
109         -lNMTDS \
110         -lmed_V2_1 \
111         -lMEDWrapper \
112         -lMEDWrapperBase \
113         -lMEDWrapper_V2_1 \
114         -lMEDWrapper_V2_2 \
115         -lPlot2d \
116         -lGLViewer \
117         -lOCCViewer \
118         -lVTKViewer \
119         -lSVTK \
120         -lSOCC \
121         -lSPlot2d \
122         -lSUPERVGraph \
123         -lPyInterp \
124         -lPythonConsole \
125         -lLogWindow \
126         -lLightApp \
127         -lSalomeContainer \
128         -lToolsGUI \
129         -lSalomeNS \
130         -lEvent \
131         -lSalomeGenericObj \
132         -lSALOMELocalTrace \
133         -lwith_loggerTraceCollector \
134         -lSALOMEBasics \
135         -lOpUtil
136
137 @CONCLUDE@