]> SALOME platform Git repositories - modules/gui.git/blob - src/VTKViewer/Makefile.in
Salome HOME
b22592c5293d077dfa4c91c7a539d1393c4249a6
[modules/gui.git] / src / VTKViewer / Makefile.in
1 #  Copyright (C) 2005  CEA/DEN, EDF R&D, OPEN CASCADE, PRINCIPIA R&D
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/
18 #
19 #  File   : Makefile.in
20 #  Author : Vladimir Klyachin (OCN)
21 #  Module : VTKViewer
22 # $Header$
23
24 top_srcdir=@top_srcdir@
25 top_builddir=../..
26 srcdir=@srcdir@
27 VPATH=.:@srcdir@:@srcdir@/resources
28
29
30 @COMMENCE@
31
32 # header files 
33 EXPORT_HEADERS= \
34                 VTKViewer.h \
35                 VTKViewer_CellLocationsArray.h \
36                 VTKViewer_Actor.h \
37                 VTKViewer_ExtractUnstructuredGrid.h \
38                 VTKViewer_ConvexTool.h \
39                 VTKViewer_Filter.h \
40                 VTKViewer_GeometryFilter.h \
41                 VTKViewer_AppendFilter.h \
42                 VTKViewer_Algorithm.h \
43                 VTKViewer_InteractorStyle.h \
44                 VTKViewer_PassThroughFilter.h \
45                 VTKViewer_RenderWindow.h \
46                 VTKViewer_RenderWindowInteractor.h \
47                 VTKViewer_ShrinkFilter.h \
48                 VTKViewer_TransformFilter.h \
49                 VTKViewer_Transform.h \
50                 VTKViewer_Trihedron.h \
51                 VTKViewer_Utilities.h \
52                 VTKViewer_VectorText.h \
53                 VTKViewer_ViewManager.h \
54                 VTKViewer_ViewModel.h \
55                 VTKViewer_ViewWindow.h \
56                 VTKViewer_Functor.h
57
58 PO_FILES = \
59         VTKViewer_images.po \
60         VTKViewer_msg_en.po
61         
62 # Libraries targets
63 LIB = libVTKViewer.la
64
65 LIB_SRC= \
66         VTKViewer_CellLocationsArray.cxx \
67         VTKViewer_Actor.cxx \
68         VTKViewer_ExtractUnstructuredGrid.cxx \
69         VTKViewer_Filter.cxx \
70         VTKViewer_GeometryFilter.cxx \
71         VTKViewer_AppendFilter.cxx \
72         VTKViewer_InteractorStyle.cxx \
73         VTKViewer_PassThroughFilter.cxx \
74         VTKViewer_RenderWindow.cxx \
75         VTKViewer_RenderWindowInteractor.cxx \
76         VTKViewer_ShrinkFilter.cxx \
77         VTKViewer_Transform.cxx \
78         VTKViewer_TransformFilter.cxx \
79         VTKViewer_Trihedron.cxx \
80         VTKViewer_Utilities.cxx \
81         VTKViewer_VectorText.cxx \
82         VTKViewer_ViewManager.cxx \
83         VTKViewer_ViewModel.cxx \
84         VTKViewer_ConvexTool.cxx \
85         VTKViewer_ViewWindow.cxx                
86
87 LIB_MOC = \
88         VTKViewer_RenderWindow.h \
89         VTKViewer_RenderWindowInteractor.h \
90         VTKViewer_ViewManager.h \
91         VTKViewer_ViewModel.h \
92         VTKViewer_ViewWindow.h 
93
94 BIN = VTKViewer
95
96 CPPFLAGS+=$(QT_INCLUDES) $(VTK_INCLUDES) $(OCC_INCLUDES)
97
98 LDFLAGS+=$(VTK_LIBS) $(QT_MT_LIBS) $(CAS_KERNEL) -lqtx -lsuit
99
100 LDFLAGSFORBIN=$(LDFLAGS)
101
102 @CONCLUDE@