Salome HOME
Update copyright information
[modules/superv.git] / src / SUPERVGUI / Makefile.in
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 #  SUPERV SUPERVGUI : GUI for Supervisor component
23 #  File   : Makefile.in
24 #  Author : Arnaud RES, OPENCASCADE
25 #  Module : SUPERV
26 #  $Header: 
27 #
28 top_srcdir=@top_srcdir@
29 top_builddir=../..
30 srcdir=@srcdir@
31 VPATH=.:@srcdir@
32
33
34 @COMMENCE@
35
36 # exported header files
37 EXPORT_HEADERS = SUPERVGUI.h
38
39 # .po files to transform in .qm
40 PO_FILES = \
41         SUPERV_images.po  \
42         SUPERV_msg_en.po \
43         SUPERV_msg_fr.po
44
45 # Libraries targets
46
47 LIB = libSUPERV.la
48
49 LIB_SRC = SUPERVGUI.cxx                      \
50           SUPERVGUI_DataModel.cxx            \
51           SUPERVGUI_Selection.cxx            \
52           SUPERVGUI_ArrayView.cxx            \
53           SUPERVGUI_Canvas.cxx               \
54           SUPERVGUI_CanvasArray.cxx          \
55           SUPERVGUI_CanvasView.cxx           \
56           SUPERVGUI_CanvasNode.cxx           \
57           SUPERVGUI_CanvasNodePrs.cxx        \
58           SUPERVGUI_CanvasControlNode.cxx    \
59           SUPERVGUI_CanvasControlNodePrs.cxx \
60           SUPERVGUI_CanvasCellNodePrs.cxx    \
61           SUPERVGUI_CanvasPort.cxx           \
62           SUPERVGUI_CanvasLink.cxx           \
63           SUPERVGUI_Service.cxx              \
64           SUPERVGUI_Main.cxx                 \
65           SUPERVGUI_BrowseNodeDlg.cxx        \
66           SUPERVGUI_Information.cxx          \
67           SUPERVGUI_Notification.cxx         \
68           SUPERVGUI_ManagePortsDlg.cxx       \
69           SUPERVGUI_Library.cxx              \
70           SUPERVGUI_Clipboard.cxx              
71
72 LIB_MOC = SUPERVGUI.h                        \
73           SUPERVGUI_ArrayView.h              \
74           SUPERVGUI_Canvas.h                 \
75           SUPERVGUI_CanvasArray.h            \
76           SUPERVGUI_CanvasView.h             \
77           SUPERVGUI_CanvasNode.h             \
78           SUPERVGUI_CanvasControlNode.h      \
79           SUPERVGUI_CanvasPort.h             \
80           SUPERVGUI_CanvasLink.h             \
81           SUPERVGUI_Service.h                \
82           SUPERVGUI_Main.h                   \
83           SUPERVGUI_BrowseNodeDlg.h          \
84           SUPERVGUI_Information.h            \
85           SUPERVGUI_Notification.h           \
86           SUPERVGUI_ManagePortsDlg.h         \
87           SUPERVGUI_Library.h                \
88           SUPERVGUI_Clipboard.h 
89
90 LIB_CLIENT_IDL = SALOMEDS.idl                \
91                  SALOMEDS_Attributes.idl     \
92                  SALOME_ModuleCatalog.idl    \
93                  SALOME_Component.idl        \
94                  SUPERV.idl                  \
95                  SALOME_Exception.idl        \
96                  SALOME_GenericObj.idl
97
98 LIB_SERVER_IDL = 
99
100 CPPFLAGS += $(QT_INCLUDES) $(PYTHON_INCLUDES) $(OCC_INCLUDES) $(VTK_INCLUDES) \
101             $(OGL_INCLUDES) $(BOOST_CPPFLAGS) \
102             -ftemplate-depth-42 $(KERNEL_CXXFLAGS) $(GUI_CXXFLAGS)
103
104 LDFLAGS += $(GUI_LDFLAGS) -lSalomeApp -lsuit -lSalomeNS -lEvent \
105            -lSalomeLifeCycleCORBA -lSalomeNotification -lSUPERVGraph \
106            $(KERNEL_LDFLAGS) -lSalomeDS -lSalomeDSClient \
107            $(PYTHON_LIBS) $(QT_MT_LIBS)
108 #          $(VTK_LIBS) $(OGL_LIBS)
109
110 #-lqsplitterP
111 LIBS+= 
112
113 @CONCLUDE@