Salome HOME
Fix for problem with table of contents resizing.
[modules/gui.git] / src / OCCViewer / 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/ or email : webmaster.salome@opencascade.com
18 #
19 #  File   : Makefile.in
20 #  Author : Vladimir Klyachin (OCN)
21 #  Module : OCCViewer
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= OCCViewer_AISSelector.h \
34                 OCCViewer_ViewManager.h \
35                 OCCViewer_ViewModel.h \
36                 OCCViewer_ViewPort3d.h \
37                 OCCViewer_ViewPort.h \
38                 OCCViewer_ViewWindow.h \
39                 OCCViewer_VService.h \
40                 OCCViewer_CreateRestoreViewDlg.h \
41                 OCCViewer.h
42                      
43 # .po files to transform in .qm
44 PO_FILES = OCCViewer_images.po \
45            OCCViewer_msg_en.po 
46
47 # Libraries targets
48 LIB = libOCCViewer.la
49 LIB_SRC= OCCViewer_AISSelector.cxx \
50          OCCViewer_ViewManager.cxx \
51          OCCViewer_ViewModel.cxx \
52          OCCViewer_ViewPort3d.cxx \
53          OCCViewer_ViewPort.cxx \
54          OCCViewer_ViewWindow.cxx \
55          OCCViewer_VService.cxx \
56          OCCViewer_CreateRestoreViewDlg.cxx \
57          OCCViewer_ClippingDlg.cxx
58
59 LIB_MOC = OCCViewer_AISSelector.h \
60           OCCViewer_ViewModel.h \
61           OCCViewer_ViewPort3d.h \
62           OCCViewer_ViewPort.h \
63           OCCViewer_ViewWindow.h \
64           OCCViewer_ViewManager.h \
65           OCCViewer_CreateRestoreViewDlg.h \
66           OCCViewer_ClippingDlg.h
67
68 RESOURCES_FILES = \
69 view_back.png \
70 view_bottom.png \
71 view_camera_dump.png \
72 view_clone.png \
73 view_clipping.png \
74 view_clipping_pressed.png \
75 view_fitall.png \
76 view_fitarea.png \
77 view_front.png \
78 view_glpan.png \
79 view_left.png \
80 view_pan.png \
81 view_presets.png \
82 view_reset.png \
83 view_right.png \
84 view_rotate.png \
85 view_shoot.png \
86 view_top.png \
87 view_triedre.png \
88 view_zoom.png
89
90 CPPFLAGS+=$(QT_INCLUDES) $(OGL_INCLUDES) $(OCC_INCLUDES)
91
92 LDFLAGS+=$(OGL_LIBS) $(QT_MT_LIBS) $(CAS_KERNEL) $(CAS_VIEWER) -lsuit
93
94 @CONCLUDE@
95
96