Salome HOME
669455b41e78ca51ad66053c74be848908f14c85
[modules/gui.git] / src / Plot2d / CMakeLists.txt
1 # Copyright (C) 2012  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_DIRS}
24   ${QT_INCLUDE_DIRS}
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 SET(COMMON_FLAGS "${QT_DEFINITIONS} ${QWT_DEFINITIONS} ${PYTHON_DEFINITIONS} ${PLATFORM_DEFINITIONS}")
33 SET(COMMON_LIBS ${QWT_LIBS} ${QT_MT_LIBS} ${PYTHON_LIBS} suit)
34
35 SET(GUI_HEADERS   
36   Plot2d_FitDataDlg.h
37   Plot2d_SetupViewDlg.h
38   Plot2d_ViewFrame.h
39   Plot2d_ViewManager.h
40   Plot2d_ViewModel.h
41   Plot2d_ViewWindow.h
42   Plot2d_SetupCurveDlg.h
43   Plot2d_Algorithm.h
44   Plot2d_NormalizeAlgorithm.h
45   Plot2d_SetupCurveScaleDlg.h
46   Plot2d_ToolTip.h
47 )
48
49 SET(Plot2d_SOURCES
50   Plot2d.cxx
51   Plot2d_PlotItems.cxx
52   Plot2d_Object.cxx
53   Plot2d_Curve.cxx
54   Plot2d_Histogram.cxx
55   Plot2d_FitDataDlg.cxx
56   Plot2d_Prs.cxx
57   Plot2d_SetupViewDlg.cxx
58   Plot2d_ViewFrame.cxx
59   Plot2d_ViewManager.cxx
60   Plot2d_ViewModel.cxx
61   Plot2d_ViewWindow.cxx
62   Plot2d_Algorithm.cxx
63   Plot2d_NormalizeAlgorithm.cxx
64   Plot2d_SetupCurveDlg.cxx
65   Plot2d_SetupCurveScaleDlg.cxx
66   Plot2d_ToolTip.cxx
67 )
68
69 SET(GUITS_SOURCES
70   resources/Plot2d_images.ts
71   resources/Plot2d_msg_en.ts
72   resources/Plot2d_msg_fr.ts
73 )
74
75 # header files 
76 SET(COMMON_HEADERS_H 
77   Plot2d.h
78   Plot2d_PlotItems.h
79   Plot2d_Object.h
80   Plot2d_Curve.h
81   Plot2d_Histogram.h
82   Plot2d_FitDataDlg.h
83   Plot2d_Prs.h
84   Plot2d_SetupViewDlg.h
85   Plot2d_ViewFrame.h
86   Plot2d_ViewManager.h
87   Plot2d_ViewModel.h
88   Plot2d_ViewWindow.h
89   Plot2d_Algorithm.h
90   Plot2d_NormalizeAlgorithm.h
91   Plot2d_SetupCurveDlg.h
92   Plot2d_ToolTip.h
93   Plot2d_SetupCurveScaleDlg.h
94 )
95
96 IF(ENABLE_PYCONSOLE)
97   SET(COMMON_HEADERS_H
98       ${COMMON_HEADERS_H}
99       Plot2d_AnalyticalCurve.h
100       Plot2d_AnalyticalCurveDlg.h
101       Plot2d_AnalyticalParser.h
102   )
103   SET(Plot2d_SOURCES
104       ${Plot2d_SOURCES}
105       Plot2d_AnalyticalCurve.cxx
106       Plot2d_AnalyticalCurveDlg.cxx
107       Plot2d_AnalyticalParser.cxx
108   )
109   SET(GUI_HEADERS
110       ${GUI_HEADERS}
111       Plot2d_AnalyticalCurveDlg.h
112   )
113 ENDIF(ENABLE_PYCONSOLE)
114
115 QT4_WRAP_CPP(GUI_HEADERS_MOC ${GUI_HEADERS})
116
117 ADD_LIBRARY(Plot2d SHARED ${Plot2d_SOURCES} ${GUI_HEADERS_MOC})
118 SET_TARGET_PROPERTIES(Plot2d PROPERTIES COMPILE_FLAGS "${COMMON_FLAGS}")
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})