]> SALOME platform Git repositories - modules/geom.git/blob - src/CurveCreator/Makefile.am
Salome HOME
Images neccessary for CurveEditor were added
[modules/geom.git] / src / CurveCreator / Makefile.am
1 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
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
20 #  File   : Makefile.am
21 #  Author : Sergey KHROMOV
22 #  Modified by :
23 #  Module : GEOM
24 #
25 include $(top_srcdir)/adm_local/unix/make_common_starter.am
26
27 # Libraries targets
28 lib_LTLIBRARIES = libCurveCreator.la
29
30 # Sources files
31 dist_libCurveCreator_la_SOURCES =       \
32         CurveCreator_Macro.hxx \
33         CurveCreator.hxx \
34         CurveCreator_Operation.hxx \
35         CurveCreator_Diff.hxx \
36         CurveCreator_Section.hxx \
37         CurveCreator_Curve.hxx \
38         CurveCreator_CurveEditor.hxx \
39         CurveCreator_Operation.cxx \
40         CurveCreator_Diff.cxx \
41         CurveCreator_Curve.cxx \
42         CurveCreator_CurveEditor.cxx
43
44 # Header files
45 salomeinclude_HEADERS = \
46         CurveCreator_Macro.hxx \
47         CurveCreator.hxx \
48         CurveCreator_Operation.hxx \
49         CurveCreator_Diff.hxx \
50         CurveCreator_Section.hxx \
51         CurveCreator_Curve.hxx \
52         CurveCreator_CurveEditor.hxx
53
54 # Compilation options for GUI mode
55 if GEOM_ENABLE_GUI
56   dist_libCurveCreator_la_SOURCES +=  \
57         CurveCreator_PointItem.h \
58         CurveCreator_UndoOptsDlg.h \
59         CurveCreator_EditPntDlg.h \
60         CurveCreator_EditPntsDlg.h \
61         CurveCreator_EditPntsWidget.h \
62         CurveCreator_Widget.h        \
63         CurveCreator_PointItem.cxx \
64         CurveCreator_UndoOptsDlg.cxx \
65         CurveCreator_EditPntDlg.cxx \
66         CurveCreator_EditPntsDlg.cxx \
67         CurveCreator_EditPntsWidget.cxx \
68         CurveCreator_Widget.cxx
69
70   salomeinclude_HEADERS += \
71         CurveCreator_PointItem.h \
72         CurveCreator_UndoOptsDlg.h \
73         CurveCreator_EditPntDlg.h \
74         CurveCreator_EditPntsDlg.h \
75         CurveCreator_EditPntsWidget.h \
76         CurveCreator_Widget.h
77
78   MOC_FILES = \
79         CurveCreator_UndoOptsDlg_moc.cxx \
80         CurveCreator_EditPntDlg_moc.cxx \
81         CurveCreator_EditPntsDlg_moc.cxx \
82         CurveCreator_EditPntsWidget_moc.cxx \
83         CurveCreator_Widget_moc.cxx
84
85   nodist_libCurveCreator_la_SOURCES = $(MOC_FILES)
86 endif
87
88 # additional information to compile and link file
89
90 libCurveCreator_la_CPPFLAGS =   \
91         $(QT_INCLUDES)                          \
92         $(CAS_CPPFLAGS)         \
93         $(KERNEL_CXXFLAGS)
94
95 libCurveCreator_la_LDFLAGS  =                   \
96         $(KERNEL_LDFLAGS)       \
97         $(CAS_KERNEL)