Salome HOME
Dump Python extension
[modules/geom.git] / src / BlocksGUI / Makefile.am
1 # GEOM BUILDGUI : 
2 #
3 # Copyright (C) 2003  CEA
4
5 # This library is free software; you can redistribute it and/or 
6 # modify it under the terms of the GNU Lesser General Public 
7 # License as published by the Free Software Foundation; either 
8 # version 2.1 of the License. 
9
10 # This library is distributed in the hope that it will be useful, 
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 # Lesser General Public License for more details. 
14
15 # You should have received a copy of the GNU Lesser General Public 
16 # License along with this library; if not, write to the Free Software 
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 # File    : Makefile.am
22 # Author  : Alexander BORODIN, Open CASCADE S.A.S. (alexander.borodin@opencascade.com)
23 # Package : BlockGUI
24 #
25
26 include $(top_srcdir)/adm_local/unix/make_common_starter.am
27
28 # Headers files
29 salomeinclude_HEADERS =                 \
30         BlocksGUI.h                     \
31         BlocksGUI_QuadFaceDlg.h         \
32         BlocksGUI_BlockDlg.h            \
33         BlocksGUI_ExplodeDlg.h          \
34         BlocksGUI_PropagateDlg.h        \
35         BlocksGUI_TrsfDlg.h
36
37 # Libraries targets
38 lib_LTLIBRARIES = libBlocksGUI.la 
39
40 # Sources files
41 dist_libBlocksGUI_la_SOURCES =          \
42         BlocksGUI.cxx                   \
43         BlocksGUI_QuadFaceDlg.cxx       \
44         BlocksGUI_BlockDlg.cxx          \
45         BlocksGUI_ExplodeDlg.cxx        \
46         BlocksGUI_PropagateDlg.cxx      \
47         BlocksGUI_TrsfDlg.cxx
48
49 MOC_FILES =                             \
50         BlocksGUI_QuadFaceDlg_moc.cxx   \
51         BlocksGUI_BlockDlg_moc.cxx      \
52         BlocksGUI_ExplodeDlg_moc.cxx    \
53         BlocksGUI_PropagateDlg_moc.cxx  \
54         BlocksGUI_TrsfDlg_moc.cxx
55
56 nodist_libBlocksGUI_la_SOURCES =        \
57         $(MOC_FILES)
58
59 # additional information to compile and link file
60
61 libBlocksGUI_la_CPPFLAGS =                      \
62         $(QT_INCLUDES)                          \
63         $(VTK_INCLUDES)                         \
64         $(CAS_CPPFLAGS)                         \
65         $(PYTHON_INCLUDES)                      \
66         $(BOOST_CPPFLAGS)                       \
67         $(KERNEL_CXXFLAGS)                      \
68         $(GUI_CXXFLAGS)                         \
69         $(CORBA_CXXFLAGS)                       \
70         $(CORBA_INCLUDES)                       \
71         -I$(srcdir)/../GEOMGUI                  \
72         -I$(srcdir)/../DlgRef                   \
73         -I$(srcdir)/../GEOMBase                 \
74         -I$(srcdir)/../OBJECT                   \
75         -I$(srcdir)/../GEOMClient               \
76         -I$(srcdir)/../GEOMImpl                 \
77         -I$(srcdir)/../GEOMFiltersSelection     \
78         -I$(top_builddir)/src/DlgRef            \
79         -I$(top_builddir)/idl                   \
80         -I$(top_builddir)/salome_adm/unix
81
82 libBlocksGUI_la_LDFLAGS  =                                      \
83         ../GEOMFiltersSelection/libGEOMFiltersSelection.la      \
84         ../DlgRef/libDlgRef.la                                  \
85         ../GEOMBase/libGEOMBase.la                              \
86         ../GEOMGUI/libGEOM.la                                   \
87         $(QT_MT_LIBS)