Salome HOME
CoTech decision: move MEDWrapper from MED to SMESH
[modules/smesh.git] / src / Tools / padder / meshjob / impl / Makefile.am
1 # Copyright (C) 2011-2013  EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 include $(top_srcdir)/adm_local/unix/make_common_starter.am
21
22 AM_CFLAGS=$(SALOME_INCLUDES) -fexceptions
23
24 lib_LTLIBRARIES= libMeshJobManagerEngine.la
25
26 salomeinclude_HEADERS= \
27         MeshJobManager_i.hxx
28
29
30 # =============================================================
31 # Definition of MeshJobManagerEngine construction
32 # =============================================================
33 libMeshJobManagerEngine_la_SOURCES  = \
34         MeshJobManager_i.cxx
35
36 LIBXML_LIBS=@LIBXML_LIBS@
37 KERNEL_CXXFLAGS=@KERNEL_CXXFLAGS@
38
39 libMeshJobManagerEngine_la_CXXFLAGS = \
40         -I$(top_builddir)/src/Tools/padder/meshjob/idl $(KERNEL_CXXFLAGS) \
41         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @LIBXML_INCLUDES@
42
43 libMeshJobManagerEngine_la_FFLAGS = -fexceptions
44 libMeshJobManagerEngine_la_LDFLAGS   = \
45         $(top_builddir)/src/Tools/padder/meshjob/idl/libSalomeIDLSPADDER.la \
46         @KERNEL_LDFLAGS@ -lSalomeContainer -lSalomeKernelHelpers -lSalomeLifeCycleCORBA \
47         @LIBXML_LIBS@
48
49 # =============================================================
50 # Definition of the SPADDERPluginTester engine construction
51 # =============================================================
52 lib_LTLIBRARIES += libSPADDERPluginTesterEngine.la
53
54 libSPADDERPluginTesterEngine_la_SOURCES  = \
55         SPADDERPluginTester_i.hxx \
56         SPADDERPluginTester_i.cxx
57
58 nodist_libSPADDERPluginTesterEngine_la_SOURCES =
59
60 libSPADDERPluginTesterEngine_la_CXXFLAGS = \
61         -I$(top_builddir)/src/Tools/padder/meshjob/idl $(KERNEL_CXXFLAGS) \
62         @CORBA_CXXFLAGS@ @CORBA_INCLUDES@ @LIBXML_INCLUDES@
63
64 libSPADDERPluginTesterEngine_la_FFLAGS = -fexceptions
65 libSPADDERPluginTesterEngine_la_LIBADD = \
66         $(top_builddir)/src/Tools/padder/meshjob/idl/libSalomeIDLSPADDER.la \
67         @KERNEL_LDFLAGS@ -lSalomeContainer -lSalomeKernelHelpers \
68         @LIBXML_LIBS@
69
70
71 # For testing SMESH
72 #
73 libSPADDERPluginTesterEngine_la_CXXFLAGS += \
74         @GEOM_CXXFLAGS@ \
75         -I$(top_builddir)/idl \
76         -I$(top_srcdir)/src/SMESH \
77         -I$(top_srcdir)/src/SMESH_I \
78         -I$(top_srcdir)/src/SMESHDS \
79         -I$(top_srcdir)/src/SMDS \
80         -I$(top_srcdir)/src/SMESHUtils \
81         $(VTK_INCLUDES) $(CAS_CPPFLAGS) $(BOOST_CPPFLAGS)
82
83 libSPADDERPluginTesterEngine_la_LIBADD += \
84         $(top_builddir)/src/SMESH/libSMESHimpl.la \
85         $(top_builddir)/src/SMESH_I/libSMESHEngine.la \
86         $(top_builddir)/src/SMESHDS/libSMESHDS.la \
87         $(top_builddir)/src/SMDS/libSMDS.la \
88         $(top_builddir)/src/SMESHUtils/libSMESHUtils.la
89