Salome HOME
[PVViewer] Add Catalyst menu
[modules/gui.git] / src / PVViewer / CMakeLists.txt
1 # Copyright (C) 2010-2016  CEA/DEN, EDF R&D
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 FIND_PACKAGE(ParaView COMPONENTS vtkPVCatalyst vtkPVPythonCatalyst)
24 LIST(FIND VTK_MODULES_ENABLED vtkPVCatalyst vtkPVCatalyst_index)
25 LIST(FIND VTK_MODULES_ENABLED vtkPVPythonCatalyst vtkPVPythonCatalyst_index)
26 IF (${vtkPVCatalyst_index} GREATER -1 AND
27     ${vtkPVPythonCatalyst_index} GREATER -1)
28   SET(PVCATALYST_ENABLED yes)
29 ENDIF()
30 IF (PVCATALYST_ENABLED)
31   ADD_DEFINITIONS("-DPVCATALYST_ENABLED")
32 ENDIF()
33
34 INCLUDE(UseQtExt)
35
36 # --- options ---
37
38 INCLUDE_DIRECTORIES(
39   ${PROJECT_SOURCE_DIR}/src/SUIT
40   ${PROJECT_SOURCE_DIR}/src/STD
41   ${PROJECT_SOURCE_DIR}/src/Qtx
42   ${PROJECT_SOURCE_DIR}/src/Event
43   ${PROJECT_SOURCE_DIR}/src/PyInterp
44   ${PROJECT_SOURCE_DIR}/src/PVServerService
45   ${CMAKE_SOURCE_DIR}/src/LogWindow
46   )
47
48 ADD_DEFINITIONS(
49   ${KERNEL_DEFINITIONS}
50   ${PYTHON_DEFINITIONS}
51   )
52
53 SET(_link_LIBRARIES
54   ${KERNEL_SALOMELocalTrace}
55   ${KERNEL_OpUtil}
56   PyInterp
57   suit
58   Event
59   PVServerService
60   pqApplicationComponents
61   #vtkRenderingFreeTypeOpenGL
62   vtkRenderingFreeType
63   )
64
65 # --- headers ---
66
67 # header files / to be processed by moc
68 SET(_moc_HEADERS
69   PVViewer_ViewManager.h
70   PVViewer_ViewModel.h
71   PVViewer_ViewWindow.h
72   PVViewer_Behaviors.h
73   PVViewer_GUIElements.h
74 )
75
76 # header files / no moc processing
77 SET(_other_HEADERS
78   PVViewer.h
79   PVViewer_LogWindowAdapter.h
80   PVViewer_Core.h
81 )
82 # header files / to install
83 SET(PVViewer_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
84
85 # resource files / to be processed by lrelease
86 SET(_ts_RESOURCES
87   resources/PVViewer_msg_en.ts
88   resources/PVViewer_msg_ja.ts
89   resources/PVViewer_msg_fr.ts
90 )
91
92 # --- sources ---
93
94 # sources / moc wrappings
95 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
96
97 # sources / rcc wrappings
98 QT_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
99
100 # sources / static
101 SET(_other_SOURCES
102   PVViewer_ViewManager.cxx
103   PVViewer_ViewModel.cxx
104   PVViewer_ViewWindow.cxx
105   PVViewer_LogWindowAdapter.cxx
106   PVViewer_Behaviors.cxx
107   PVViewer_GUIElements.cxx
108   PVViewer_Core.cxx
109   )
110
111 # sources / to compile
112 SET(PVViewer_SOURCES
113   ${_other_SOURCES}
114   ${_moc_SOURCES}
115   ${_rcc_SOURCES}
116   )
117
118 # --- rules ---
119 ADD_LIBRARY(PVViewer ${PVViewer_SOURCES})
120
121 TARGET_LINK_LIBRARIES(PVViewer ${_link_LIBRARIES})
122 INSTALL(TARGETS PVViewer EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
123
124 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
125
126 # --- header and resources installation ---
127 INSTALL(FILES ${PVViewer_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})