Salome HOME
Fix for Bug IPAL8945
[modules/visu.git] / src / VVTK / Makefile.in
1 #  File   : Makefile.in
2 #  Author : Alexander Solovyov(OCN)
3 #  Module : VVTK
4 # $Header: 
5
6 top_srcdir=@top_srcdir@
7 top_builddir=../..
8 srcdir=@srcdir@
9 VPATH=.:@srcdir@
10
11
12 @COMMENCE@
13
14 # header files
15 EXPORT_HEADERS = \
16         VVTK.h \
17         VVTK_ViewManager.h \
18         VVTK_ViewModel.h \
19         VVTK_InteractorStyle.h \
20         VVTK_PickingDlg.h \
21         VVTK_SegmentationCursorDlg.h \
22         VVTK_PrimitiveBox.h \
23         VVTK_SizeBox.h \
24         VVTK_ViewWindow.h \
25         VVTK_MainWindow.h \
26         VVTK_ImageWriter.h \
27         VVTK_ImageWriterMgr.h \
28         VVTK_RecorderDlg.h \
29         VVTK_Recorder.h
30
31 # Libraries targets
32 LIB = libVVTK.la
33
34 LIB_SRC = \
35         VVTK_ViewManager.cxx \
36         VVTK_ViewModel.cxx \
37         VVTK_InteractorStyle.cxx \
38         VVTK_PickingDlg.cxx \
39         VVTK_SegmentationCursorDlg.cxx \
40         VVTK_PrimitiveBox.cxx \
41         VVTK_SizeBox.cxx \
42         VVTK_ViewWindow.cxx \
43         VVTK_Renderer.cxx \
44         VVTK_MainWindow.cxx \
45         VVTK_ImageWriter.cxx \
46         VVTK_ImageWriterMgr.cxx \
47         VVTK_RecorderDlg.cxx \
48         VVTK_Recorder.cxx
49
50 LIB_MOC = \
51         VVTK_ViewWindow.h \
52         VVTK_ViewModel.h \
53         VVTK_ViewManager.h \
54         VVTK_PickingDlg.h \
55         VVTK_SegmentationCursorDlg.h \
56         VVTK_RecorderDlg.h \
57         VVTK_PrimitiveBox.h \
58         VVTK_SizeBox.h \
59         VVTK_MainWindow.h 
60
61 CPPFLAGS += \
62         $(QT_INCLUDES) \
63         $(OCC_INCLUDES) \
64         $(VTK_INCLUDES) \
65         $(BOOST_CPPFLAGS) \
66         -I$(KERNEL_ROOT_DIR)/include/salome \
67         -I$(GUI_ROOT_DIR)/include/salome \
68         -I${MED_ROOT_DIR}/include/salome
69
70 LDFLAGS += \
71         $(QT_MT_LIBS) \
72         $(OCC_LIBS) \
73         $(VTK_LIBS) \
74         -L$(KERNEL_ROOT_DIR)/lib/salome \
75         -L$(GUI_ROOT_DIR)/lib/salome
76
77 LIBS+= -lsuit -lCAM -lSalomeObject -lSVTK -lOpUtil
78
79
80 @CONCLUDE@