Salome HOME
Add functionality for Table view based on QCanvas.
[modules/superv.git] / src / SUPERVGUI / Makefile.in
1 #  SUPERV SUPERVGUI : GUI for Supervisor component
2 #
3 #  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 #
22 #
23 #
24 #  File   : Makefile.in
25 #  Author : Arnaud RES, OPENCASCADE
26 #  Module : SUPERV
27 #  $Header: 
28
29 top_srcdir=@top_srcdir@
30 top_builddir=../..
31 srcdir=@srcdir@
32 VPATH=.:@srcdir@
33
34
35 @COMMENCE@
36
37 # exported header files
38 EXPORT_HEADERS = SUPERVGUI.h
39
40 # .po files to transform in .qm
41 PO_FILES = \
42         SUPERV_icons.po  \
43         SUPERV_msg_en.po \
44         SUPERV_msg_fr.po
45
46 # Libraries targets
47
48 LIB = libSUPERVGUI.la
49
50 LIB_SRC = SUPERVGUI.cxx              \
51           SUPERVGUI_Service.cxx      \
52           SUPERVGUI_Python.cxx       \
53           SUPERVGUI_Information.cxx  \
54           SUPERVGUI_Notification.cxx \
55           SUPERVGUI_Main.cxx         \
56           SUPERVGUI_View.cxx         \
57           SUPERVGUI_Graph.cxx        \
58           SUPERVGUI_Array.cxx        \
59           SUPERVGUI_Node.cxx         \
60           SUPERVGUI_GraphNode.cxx    \
61           SUPERVGUI_ComputeNode.cxx  \
62           SUPERVGUI_ControlNode.cxx  \
63           SUPERVGUI_Port.cxx         \
64           SUPERVGUI_BrowseNodeDlg.cxx \
65           SUPERVGUI_Link.cxx        \
66           SUPERVGUI_CtrlLink.cxx     \
67           SUPERVGUI_Label.cxx        \
68           SUPERVGUI_CanvasView.cxx   \
69           SUPERVGUI_Canvas.cxx       \
70           SUPERVGUI_CanvasArray.cxx  \
71           SUPERVGUI_ArrayView.cxx   \
72           SUPERVGUI_CanvasNode.cxx   \
73           SUPERVGUI_CanvasNodePrs.cxx   \
74           SUPERVGUI_CanvasControlNode.cxx   \
75           SUPERVGUI_CanvasControlNodePrs.cxx   \
76           SUPERVGUI_CanvasCellNodePrs.cxx   \
77           SUPERVGUI_CanvasPort.cxx   \
78           SUPERVGUI_CanvasLink.cxx \
79           SUPERVGUI_ManagePortsDlg.cxx
80
81 LIB_MOC = SUPERVGUI.h              \
82           SUPERVGUI_Service.h      \
83           SUPERVGUI_Python.h       \
84           SUPERVGUI_Information.h  \
85           SUPERVGUI_Notification.h \
86           SUPERVGUI_Main.h         \
87           SUPERVGUI_View.h         \
88           SUPERVGUI_Graph.h        \
89           SUPERVGUI_Array.h        \
90           SUPERVGUI_Node.h         \
91           SUPERVGUI_GraphNode.h    \
92           SUPERVGUI_ComputeNode.h  \
93           SUPERVGUI_ControlNode.h  \
94           SUPERVGUI_Port.h         \
95           SUPERVGUI_BrowseNodeDlg.h \
96           SUPERVGUI_Link.h        \
97           SUPERVGUI_Label.h       \
98           SUPERVGUI_Canvas.h       \
99           SUPERVGUI_CanvasArray.h  \
100           SUPERVGUI_CanvasView.h   \
101           SUPERVGUI_ArrayView.h   \
102           SUPERVGUI_CanvasNode.h   \
103           SUPERVGUI_CanvasControlNode.h   \
104           SUPERVGUI_CanvasPort.h   \
105           SUPERVGUI_CanvasLink.h \
106           SUPERVGUI_ManagePortsDlg.h
107
108 LIB_CLIENT_IDL = SALOMEDS.idl             \
109                  SALOMEDS_Attributes.idl     \
110                  SALOME_ModuleCatalog.idl \
111                  SALOME_Component.idl     \
112                  SUPERV.idl \
113                  SALOME_Exception.idl 
114
115 LIB_SERVER_IDL = 
116
117 CPPFLAGS+=$(QT_INCLUDES) $(PYTHON_INCLUDES) $(OCC_INCLUDES) $(VTK_INCLUDES) $(OGL_INCLUDES) \
118           -ftemplate-depth-42 -I${KERNEL_ROOT_DIR}/include/salome
119 LDFLAGS+=$(QT_MT_LIBS) $(VTK_LIBS) $(OGL_LIBS) $(PYTHON_LIBS)\
120          -lSalomeGUI -lSalomeNS -lqsplitterP -lEvent \
121          -lSalomeLifeCycleCORBA -lSalomeNotification -lSUPERVGraph \
122          -L${KERNEL_ROOT_DIR}/lib/salome 
123
124 LIBS+=
125
126 @CONCLUDE@