Salome HOME
GEOM porting to CMake
[modules/geom.git] / src / BlocksGUI / Makefile.am
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
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 # GEOM BUILDGUI : 
21 # File    : Makefile.am
22 # Author  : Alexander BORODIN, Open CASCADE S.A.S. (alexander.borodin@opencascade.com)
23 # Package : BlockGUI
24 #
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26
27 # Headers files
28 salomeinclude_HEADERS =                 \
29         BlocksGUI.h                     \
30         BlocksGUI_QuadFaceDlg.h         \
31         BlocksGUI_BlockDlg.h            \
32         BlocksGUI_ExplodeDlg.h          \
33         BlocksGUI_PropagateDlg.h        \
34         BlocksGUI_TrsfDlg.h
35
36 # Libraries targets
37 lib_LTLIBRARIES = libBlocksGUI.la 
38
39 # Sources files
40 dist_libBlocksGUI_la_SOURCES =          \
41         BlocksGUI.cxx                   \
42         BlocksGUI_QuadFaceDlg.cxx       \
43         BlocksGUI_BlockDlg.cxx          \
44         BlocksGUI_ExplodeDlg.cxx        \
45         BlocksGUI_PropagateDlg.cxx      \
46         BlocksGUI_TrsfDlg.cxx
47
48 MOC_FILES =                             \
49         BlocksGUI_QuadFaceDlg_moc.cxx   \
50         BlocksGUI_BlockDlg_moc.cxx      \
51         BlocksGUI_ExplodeDlg_moc.cxx    \
52         BlocksGUI_PropagateDlg_moc.cxx  \
53         BlocksGUI_TrsfDlg_moc.cxx
54
55 nodist_libBlocksGUI_la_SOURCES =        \
56         $(MOC_FILES)
57
58 # additional information to compile and link file
59
60 libBlocksGUI_la_CPPFLAGS =                      \
61         $(QT_INCLUDES)                          \
62         $(VTK_INCLUDES)                         \
63         $(CAS_CPPFLAGS)                         \
64         $(PYTHON_INCLUDES)                      \
65         $(BOOST_CPPFLAGS)                       \
66         $(KERNEL_CXXFLAGS)                      \
67         $(GUI_CXXFLAGS)                         \
68         $(CORBA_CXXFLAGS)                       \
69         $(CORBA_INCLUDES)                       \
70         -I$(srcdir)/../GEOMGUI                  \
71         -I$(srcdir)/../DlgRef                   \
72         -I$(srcdir)/../GEOMBase                 \
73         -I$(srcdir)/../OBJECT                   \
74         -I$(srcdir)/../GEOMClient               \
75         -I$(srcdir)/../GEOMImpl                 \
76         -I$(srcdir)/../GEOMFiltersSelection     \
77         -I$(top_builddir)/src/DlgRef            \
78         -I$(top_builddir)/idl
79
80 libBlocksGUI_la_LDFLAGS  =                                      \
81         ../GEOMFiltersSelection/libGEOMFiltersSelection.la      \
82         ../DlgRef/libDlgRef.la                                  \
83         ../GEOMBase/libGEOMBase.la                              \
84         ../GEOMGUI/libGEOM.la                                   \
85         $(QT_MT_LIBS)