Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / SalomeApp / 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 : SalomeApp
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= SalomeApp.h \
34                 SalomeApp_Application.h \
35                 SalomeApp_DataModel.h \
36                 SalomeApp_DataObject.h \
37                 SalomeApp_Module.h \
38                 SalomeApp_Study.h \
39                 SalomeApp_ExceptionHandler.h \
40                 SalomeApp_EventFilter.h \
41                 SalomeApp_Tools.h \
42                 SalomeApp_ImportOperation.h \
43                 SalomeApp_Filter.h \
44                 SalomeApp_TypeFilter.h \
45                 SalomeApp_StudyPropertiesDlg.h \
46                 SalomeApp_CheckFileDlg.h \
47                 SalomeApp_VisualState.h
48
49 # .po files to transform in .qm
50 PO_FILES = SalomeApp_images.po \
51            SalomeApp_msg_en.po
52
53 # Libraries targets
54 LIB = libSalomeApp.la
55
56 LIB_SRC= SalomeApp_Module.cxx \
57          SalomeApp_Application.cxx \
58          SalomeApp_DataModel.cxx \
59          SalomeApp_DataObject.cxx \
60          SalomeApp_Study.cxx \
61          SalomeApp_ExceptionHandler.cxx \
62          SalomeApp_EventFilter.cxx \
63          SalomeApp_PyInterp.cxx \
64          SalomeApp_Tools.cxx \
65          SalomeApp_ImportOperation.cxx \
66          SalomeApp_Filter.cxx \
67          SalomeApp_TypeFilter.cxx \
68          SalomeApp_StudyPropertiesDlg.cxx \
69          SalomeApp_ListView.cxx \
70          SalomeApp_CheckFileDlg.cxx \
71          SalomeApp_VisualState.cxx
72
73 LIB_MOC = SalomeApp_Application.h \
74           SalomeApp_DataModel.h \
75           SalomeApp_Module.h \
76           SalomeApp_Study.h \
77           SalomeApp_StudyPropertiesDlg.h \
78           SalomeApp_ListView.h \
79           SalomeApp_CheckFileDlg.h
80
81 LIB_CLIENT_IDL = SALOMEDS.idl \
82                  SALOME_Exception.idl \
83                  SALOME_GenericObj.idl
84
85 RESOURCES_FILES = SalomeApp.ini \
86                   SalomeApp.xml
87
88 CPPFLAGS+=$(PYTHON_INCLUDES) $(QT_INCLUDES) $(QWT_INCLUDES) $(OCC_INCLUDES) $(VTK_INCLUDES) $(BOOST_CPPFLAGS) $(KERNEL_CXXFLAGS)
89
90 LDFLAGS+=$(PYTHON_LIBS) $(QT_MT_LIBS) 
91 LIBS+= -lsuit -lstd -lCAM -lObjBrowser -lSalomePrs $(KERNEL_LDFLAGS) -lOpUtil -lSALOMELocalTrace -lSalomeDSClient $(CAS_KERNEL) -lSPlot2d -lGLViewer -lOCCViewer -lVTKViewer -lSalomeObject -lSVTK -lSOCC -lPyInterp -lPythonConsole -lLogWindow -lLightApp -lSalomeContainer -lToolsGUI
92
93 @CONCLUDE@
94
95
96
97
98