Salome HOME
Update copyrights
[modules/gui.git] / src / PVViewer / CMakeLists.txt
1 # Copyright (C) 2014-2019  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 # Install ParaView filters, etc ...
21 ADD_SUBDIRECTORY(resources)
22
23 INCLUDE(UseQtExt)
24
25 # --- options ---
26
27 INCLUDE_DIRECTORIES(
28   ${PROJECT_SOURCE_DIR}/src/Qtx
29   ${PROJECT_SOURCE_DIR}/src/SUIT
30   ${PROJECT_SOURCE_DIR}/src/PVServerService
31   )
32
33 ADD_DEFINITIONS(
34   ${KERNEL_DEFINITIONS}
35   ${PYTHON_DEFINITIONS}
36   )
37
38 SET(_link_LIBRARIES 
39   ${KERNEL_SALOMELocalTrace} 
40   ${KERNEL_OpUtil}
41   suit 
42   PVServerService
43   pqApplicationComponents
44   #vtkRenderingFreeTypeOpenGL
45   vtkRenderingFreeType
46   vtkInteractionStyle
47   )
48
49 # --- headers ---
50
51 # header files / to be processed by moc
52 SET(_moc_HEADERS
53   PVViewer_ViewManager.h
54   PVViewer_ViewModel.h
55   PVViewer_ViewWindow.h
56   PVViewer_Behaviors.h
57   PVViewer_GUIElements.h
58   PVViewer_InitSingleton.h
59 )
60
61 # header files / no moc processing
62 SET(_other_HEADERS
63   PVViewer.h
64   PVViewer_OutputWindow.h
65   PVViewer_Core.h
66 )
67 # header files / to install
68 SET(PVViewer_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
69
70 # resource files / to be processed by lrelease
71 SET(_ts_RESOURCES
72   resources/PVViewer_msg_en.ts
73   resources/PVViewer_msg_ja.ts
74   resources/PVViewer_msg_fr.ts
75 )
76
77 # --- sources ---
78
79 # sources / moc wrappings
80 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
81
82 # sources / rcc wrappings
83 QT_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
84
85 # sources / static
86 SET(_other_SOURCES
87   PVViewer_ViewManager.cxx
88   PVViewer_ViewModel.cxx
89   PVViewer_ViewWindow.cxx
90   PVViewer_OutputWindow.cxx
91   PVViewer_Behaviors.cxx
92   PVViewer_GUIElements.cxx
93   PVViewer_Core.cxx
94   PVViewer_InitSingleton.cxx
95   )
96   
97 # sources / to compile
98 SET(PVViewer_SOURCES 
99   ${_other_SOURCES} 
100   ${_moc_SOURCES} 
101   ${_rcc_SOURCES}
102   )
103
104 # --- rules ---
105 ADD_LIBRARY(PVViewer ${PVViewer_SOURCES})
106
107 TARGET_LINK_LIBRARIES(PVViewer ${_link_LIBRARIES})
108 INSTALL(TARGETS PVViewer EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
109
110 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
111
112 # --- header and resources installation ---
113 INSTALL(FILES ${PVViewer_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})