Salome HOME
CCAR: improve speed of getAIS by calling CreatePrs that uses entry2aisobjects map
[modules/geom.git] / src / TransformationGUI / Makefile.am
1 #  Copyright (C) 2007-2010  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 TRANSFORMATIONGUI : 
21 # File    : Makefile.am
22 # Author  : Alexander BORODIN, Open CASCADE S.A.S. (alexander.borodin@opencascade.com)
23 # Package : TransformationGUI
24 #
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26
27 # header files 
28 salomeinclude_HEADERS =                                 \
29         TransformationGUI.h                             \
30         TransformationGUI_MultiTranslationDlg.h         \
31         TransformationGUI_MultiRotationDlg.h            \
32         TransformationGUI_TranslationDlg.h              \
33         TransformationGUI_RotationDlg.h                 \
34         TransformationGUI_MirrorDlg.h                   \
35         TransformationGUI_ScaleDlg.h                    \
36         TransformationGUI_OffsetDlg.h                   \
37         TransformationGUI_PositionDlg.h
38
39 # Libraries targets
40 lib_LTLIBRARIES = libTransformationGUI.la
41
42 dist_libTransformationGUI_la_SOURCES =                  \
43         TransformationGUI.h                             \
44         TransformationGUI_MultiTranslationDlg.h         \
45         TransformationGUI_MultiRotationDlg.h            \
46         TransformationGUI_TranslationDlg.h              \
47         TransformationGUI_RotationDlg.h                 \
48         TransformationGUI_MirrorDlg.h                   \
49         TransformationGUI_ScaleDlg.h                    \
50         TransformationGUI_OffsetDlg.h                   \
51         TransformationGUI_PositionDlg.h                 \
52                                                         \
53         TransformationGUI.cxx                           \
54         TransformationGUI_MultiTranslationDlg.cxx       \
55         TransformationGUI_MultiRotationDlg.cxx          \
56         TransformationGUI_TranslationDlg.cxx            \
57         TransformationGUI_RotationDlg.cxx               \
58         TransformationGUI_MirrorDlg.cxx                 \
59         TransformationGUI_ScaleDlg.cxx                  \
60         TransformationGUI_OffsetDlg.cxx                 \
61         TransformationGUI_PositionDlg.cxx
62
63 MOC_FILES =                                             \
64         TransformationGUI_MultiTranslationDlg_moc.cxx   \
65         TransformationGUI_MultiRotationDlg_moc.cxx      \
66         TransformationGUI_TranslationDlg_moc.cxx        \
67         TransformationGUI_RotationDlg_moc.cxx           \
68         TransformationGUI_MirrorDlg_moc.cxx             \
69         TransformationGUI_ScaleDlg_moc.cxx              \
70         TransformationGUI_OffsetDlg_moc.cxx             \
71         TransformationGUI_PositionDlg_moc.cxx
72
73 nodist_libTransformationGUI_la_SOURCES =                \
74         $(MOC_FILES)
75
76 # additional information to compile and link file
77
78 libTransformationGUI_la_CPPFLAGS =              \
79         $(QT_INCLUDES)                          \
80         $(VTK_INCLUDES)                         \
81         $(CAS_CPPFLAGS)                         \
82         $(PYTHON_INCLUDES)                      \
83         $(BOOST_CPPFLAGS)                       \
84         $(KERNEL_CXXFLAGS)                      \
85         $(GUI_CXXFLAGS)                         \
86         $(CORBA_CXXFLAGS)                       \
87         $(CORBA_INCLUDES)                       \
88         -I$(srcdir)/../GEOMGUI                  \
89         -I$(srcdir)/../DlgRef                   \
90         -I$(srcdir)/../GEOMBase                 \
91         -I$(srcdir)/../OBJECT                   \
92         -I$(srcdir)/../GEOMClient               \
93         -I$(srcdir)/../GEOMImpl                 \
94         -I$(srcdir)/../GEOMFiltersSelection     \
95         -I$(top_builddir)/src/DlgRef            \
96         -I$(top_builddir)/idl
97
98 libTransformationGUI_la_LDFLAGS  =                              \
99         ../GEOMFiltersSelection/libGEOMFiltersSelection.la      \
100         ../GEOMBase/libGEOMBase.la                              \
101         $(CAS_LDPATH) -lTKShHealing
102