Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/visu.git] / src / VVTK / Makefile.in
1 #  Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 #  See http://www.salome-platform.org/
19 #
20 #  File   : Makefile.in
21 #  Author : Alexander Solovyov(OCN)
22 #  Module : VVTK
23 # $Header: 
24
25 top_srcdir=@top_srcdir@
26 top_builddir=../..
27 srcdir=@srcdir@
28 VPATH=.:@srcdir@
29
30
31 @COMMENCE@
32
33 # header files
34 EXPORT_HEADERS = \
35         VVTK.h \
36         VVTK_ViewManager.h \
37         VVTK_ViewModel.h \
38         VVTK_InteractorStyle.h \
39         VVTK_PickingDlg.h \
40         VVTK_SegmentationCursorDlg.h \
41         VVTK_PrimitiveBox.h \
42         VVTK_SizeBox.h \
43         VVTK_ViewWindow.h \
44         VVTK_MainWindow.h \
45         VVTK_ImageWriter.h \
46         VVTK_ImageWriterMgr.h \
47         VVTK_RecorderDlg.h \
48         VVTK_Recorder.h
49
50 # Libraries targets
51 LIB = libVVTK.la
52
53 LIB_SRC = \
54         VVTK_ViewManager.cxx \
55         VVTK_ViewModel.cxx \
56         VVTK_InteractorStyle.cxx \
57         VVTK_PickingDlg.cxx \
58         VVTK_SegmentationCursorDlg.cxx \
59         VVTK_PrimitiveBox.cxx \
60         VVTK_SizeBox.cxx \
61         VVTK_ViewWindow.cxx \
62         VVTK_Renderer.cxx \
63         VVTK_MainWindow.cxx \
64         VVTK_ImageWriter.cxx \
65         VVTK_ImageWriterMgr.cxx \
66         VVTK_RecorderDlg.cxx \
67         VVTK_Recorder.cxx
68
69 LIB_MOC = \
70         VVTK_ViewWindow.h \
71         VVTK_ViewModel.h \
72         VVTK_ViewManager.h \
73         VVTK_PickingDlg.h \
74         VVTK_SegmentationCursorDlg.h \
75         VVTK_RecorderDlg.h \
76         VVTK_PrimitiveBox.h \
77         VVTK_SizeBox.h \
78         VVTK_MainWindow.h 
79
80 CPPFLAGS += \
81         $(QT_INCLUDES) \
82         $(OCC_INCLUDES) \
83         $(VTK_INCLUDES) \
84         $(BOOST_CPPFLAGS) \
85         $(KERNEL_CXXFLAGS) \
86         $(GUI_CXXFLAGS) \
87         $(MED_CXXFLAGS)
88
89 LDFLAGS += \
90         $(QT_MT_LIBS) \
91         $(OCC_LIBS) \
92         $(VTK_LIBS) \
93         $(KERNEL_LDFLAGS) \
94         $(GUI_LDFLAGS)
95
96 LIBS+= -lsuit -lCAM -lSalomeObject -lSVTK -lOpUtil
97
98
99 @CONCLUDE@