Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / Plot2d / CMakeLists.txt
1 # Copyright (C) 2012-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 INCLUDE(${CMAKE_SOURCE_DIR}/adm_local/cmake_files/UseQT4EXT.cmake)
21
22 INCLUDE_DIRECTORIES(
23   ${QWT_INCLUDE_DIR}
24   ${QT_INCLUDES}
25   ${Boost_INCLUDE_DIRS}
26   ${PYTHON_INCLUDE_DIRS}
27   ${KERNEL_ROOT_DIR}/include/salome
28   ${CMAKE_CURRENT_SOURCE_DIR}/../Qtx
29   ${CMAKE_CURRENT_SOURCE_DIR}/../SUIT
30 )
31
32 ADD_DEFINITIONS(${QT_DEFINITIONS} ${QWT_DEFINITIONS} ${PYTHON_DEFINITIONS})
33
34 SET(COMMON_LIBS ${QWT_LIBRARY} ${QT_LIBRARIES} ${PYTHON_LIBRARIES} suit)
35
36 SET(GUI_HEADERS   
37   Plot2d_FitDataDlg.h
38   Plot2d_SetupViewDlg.h
39   Plot2d_ViewFrame.h
40   Plot2d_ViewManager.h
41   Plot2d_ViewModel.h
42   Plot2d_ViewWindow.h
43   Plot2d_SetupCurveDlg.h
44   Plot2d_Algorithm.h
45   Plot2d_NormalizeAlgorithm.h
46   Plot2d_SetupCurveScaleDlg.h
47   Plot2d_ToolTip.h
48 )
49
50 SET(Plot2d_SOURCES
51   Plot2d.cxx
52   Plot2d_PlotItems.cxx
53   Plot2d_Object.cxx
54   Plot2d_Curve.cxx
55   Plot2d_Histogram.cxx
56   Plot2d_FitDataDlg.cxx
57   Plot2d_Prs.cxx
58   Plot2d_SetupViewDlg.cxx
59   Plot2d_ViewFrame.cxx
60   Plot2d_ViewManager.cxx
61   Plot2d_ViewModel.cxx
62   Plot2d_ViewWindow.cxx
63   Plot2d_Algorithm.cxx
64   Plot2d_NormalizeAlgorithm.cxx
65   Plot2d_SetupCurveDlg.cxx
66   Plot2d_SetupCurveScaleDlg.cxx
67   Plot2d_ToolTip.cxx
68 )
69
70 SET(GUITS_SOURCES
71   resources/Plot2d_images.ts
72   resources/Plot2d_msg_en.ts
73   resources/Plot2d_msg_fr.ts
74 )
75
76 # header files 
77 SET(COMMON_HEADERS_H 
78   Plot2d.h
79   Plot2d_PlotItems.h
80   Plot2d_Object.h
81   Plot2d_Curve.h
82   Plot2d_Histogram.h
83   Plot2d_FitDataDlg.h
84   Plot2d_Prs.h
85   Plot2d_SetupViewDlg.h
86   Plot2d_ViewFrame.h
87   Plot2d_ViewManager.h
88   Plot2d_ViewModel.h
89   Plot2d_ViewWindow.h
90   Plot2d_Algorithm.h
91   Plot2d_NormalizeAlgorithm.h
92   Plot2d_SetupCurveDlg.h
93   Plot2d_ToolTip.h
94   Plot2d_SetupCurveScaleDlg.h
95 )
96
97 IF(SALOME_USE_PYCONSOLE)
98   SET(COMMON_HEADERS_H
99       ${COMMON_HEADERS_H}
100       Plot2d_AnalyticalCurve.h
101       Plot2d_AnalyticalCurveDlg.h
102       Plot2d_AnalyticalParser.h
103   )
104   SET(Plot2d_SOURCES
105       ${Plot2d_SOURCES}
106       Plot2d_AnalyticalCurve.cxx
107       Plot2d_AnalyticalCurveDlg.cxx
108       Plot2d_AnalyticalParser.cxx
109   )
110   SET(GUI_HEADERS
111       ${GUI_HEADERS}
112       Plot2d_AnalyticalCurveDlg.h
113   )
114 ENDIF(SALOME_USE_PYCONSOLE)
115
116 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
117
118 ADD_LIBRARY(Plot2d ${Plot2d_SOURCES} ${GUI_HEADERS_MOC})
119 TARGET_LINK_LIBRARIES(Plot2d ${COMMON_LIBS})
120 INSTALL(TARGETS Plot2d DESTINATION ${GUI_salomelib_LIBS})
121
122 INSTALL(FILES ${COMMON_HEADERS_H} DESTINATION ${GUI_salomeinclude_HEADERS})
123 QT4_INSTALL_TS_RESOURCES("${GUITS_SOURCES}" "${GUI_salomeres_DATA}")
124
125 FILE(GLOB GUIPNG_DATA "${CMAKE_CURRENT_SOURCE_DIR}/resources/*.png")
126 INSTALL(FILES ${GUIPNG_DATA} DESTINATION ${GUI_salomeres_DATA})