Salome HOME
e9ccdf442c92cf8a0c0966d04a9f40a4cbaa6d20
[modules/gui.git] / src / SPlot2d / CMakeLists.txt
1 # Copyright (C) 2012-2022  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, or (at your option) any later version.
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(UseQtExt)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${OpenCASCADE_INCLUDE_DIR}
27   ${QT_INCLUDES}
28   ${QWT_INCLUDE_DIR}
29   ${PROJECT_SOURCE_DIR}/src/Qtx
30   ${PROJECT_SOURCE_DIR}/src/SUIT
31   ${PROJECT_SOURCE_DIR}/src/Plot2d
32   ${PROJECT_SOURCE_DIR}/src/Prs
33   ${PROJECT_SOURCE_DIR}/src/OBJECT
34 )
35
36 # additional preprocessor / compiler flags
37 ADD_DEFINITIONS(${QT_DEFINITIONS} ${QWT_DEFINITIONS} ${OpenCASCADE_DEFINITIONS})
38
39 # libraries to link to
40 SET(_link_LIBRARIES ${QT_LIBRARIES} ${QWT_LIBRARY} qtx suit Plot2d SalomePrs SalomeObject)
41
42 # --- headers ---
43
44 # header files / to be processed by moc
45 SET(_moc_HEADERS   
46   SPlot2d_ViewModel.h
47   SPlot2d_ViewWindow.h
48 )
49
50 # header files / no moc processing
51 SET(_other_HEADERS
52   SPlot2d.h
53   SPlot2d_Curve.h
54   SPlot2d_Histogram.h
55   SPlot2d_Prs.h
56 )
57
58 # header files / to install
59 SET(SPlot2d_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
60
61 # --- sources ---
62
63 # sources / moc wrappings
64 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
65
66 # sources / static
67 SET(_other_SOURCES
68   SPlot2d_Curve.cxx
69   SPlot2d_Histogram.cxx
70   SPlot2d_Prs.cxx
71   SPlot2d_ViewModel.cxx
72   SPlot2d_ViewWindow.cxx
73 )
74
75 # sources / to compile
76 SET(SPlot2d_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
77
78 # --- rules ---
79
80 ADD_LIBRARY(SPlot2d ${SPlot2d_SOURCES})
81 TARGET_LINK_LIBRARIES(SPlot2d ${_link_LIBRARIES})
82 INSTALL(TARGETS SPlot2d EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
83
84 INSTALL(FILES ${SPlot2d_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})