]> SALOME platform Git repositories - modules/geom.git/blob - src/EntityGUI/Makefile.am
Salome HOME
Update copyright information
[modules/geom.git] / src / EntityGUI / Makefile.am
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # GEOM ENTITYGUI : 
23 # File    : Makefile.am
24 # Author  : Alexander BORODIN, Open CASCADE S.A.S. (alexander.borodin@opencascade.com)
25 # Package : EntityGUI
26 #
27 include $(top_srcdir)/adm_local/unix/make_common_starter.am
28
29 # Libraries targets
30 lib_LTLIBRARIES = libEntityGUI.la
31
32 # header files
33 salomeinclude_HEADERS =                 \
34         EntityGUI.h                     \
35         EntityGUI_Widgets.h             \
36         EntityGUI_SketcherDlg.h         \
37         EntityGUI_SubShapeDlg.h 
38
39 dist_libEntityGUI_la_SOURCES =          \
40         EntityGUI.cxx                   \
41         EntityGUI_Widgets.cxx           \
42         EntityGUI_SketcherDlg.cxx       \
43         EntityGUI_SubShapeDlg.cxx
44
45 MOC_FILES =                             \
46         EntityGUI_Widgets_moc.cxx       \
47         EntityGUI_SketcherDlg_moc.cxx   \
48         EntityGUI_SubShapeDlg_moc.cxx
49
50 nodist_libEntityGUI_la_SOURCES =        \
51          $(MOC_FILES)
52
53 UIC_FILES =                             \
54         ui_EntityGUI_1Sel_QTD.h         \
55         ui_EntityGUI_1Spin_QTD.h        \
56         ui_EntityGUI_2Spin_QTD.h        \
57         ui_EntityGUI_3Spin_QTD.h        \
58         ui_EntityGUI_4Spin_QTD.h        \
59         ui_EntityGUI_Dir1_QTD.h         \
60         ui_EntityGUI_Dir2_QTD.h         \
61         ui_EntityGUI_Point_QTD.h        \
62         ui_EntityGUI_Skeleton_QTD.h
63
64 BUILT_SOURCES = $(UIC_FILES)
65
66 # additional information to compile and link file
67
68 libEntityGUI_la_CPPFLAGS =                      \
69         $(QT_INCLUDES)                          \
70         $(CAS_CPPFLAGS)                         \
71         $(VTK_INCLUDES)                         \
72         $(PYTHON_INCLUDES)                      \
73         $(BOOST_CPPFLAGS)                       \
74         $(KERNEL_CXXFLAGS)                      \
75         $(GUI_CXXFLAGS)                         \
76         $(CORBA_CXXFLAGS)                       \
77         $(CORBA_INCLUDES)                       \
78         -I$(srcdir)/../GEOMGUI                  \
79         -I$(srcdir)/../DlgRef                   \
80         -I$(srcdir)/../GEOMBase                 \
81         -I$(srcdir)/../OBJECT                   \
82         -I$(srcdir)/../GEOMClient               \
83         -I$(srcdir)/../GEOMImpl                 \
84         -I$(srcdir)/../GEOMFiltersSelection     \
85         -I$(srcdir)/../SKETCHER                 \
86         -I$(top_builddir)/src/DlgRef            \
87         -I$(top_builddir)/idl                   \
88         -I$(top_builddir)/salome_adm/unix
89
90 libEntityGUI_la_LDFLAGS  =                                      \
91         ../GEOMFiltersSelection/libGEOMFiltersSelection.la      \
92         ../GEOMBase/libGEOMBase.la                              \
93         ../SKETCHER/libGEOMSketcher.la                          \
94         ../GEOMGUI/libGEOM.la                                   \
95         $(QT_MT_LIBS)                                           \
96         $(CAS_TKTopAlgo) -lTKernel
97