]> SALOME platform Git repositories - modules/paravis.git/blob - src/PVGUI/CMakeLists.txt
Salome HOME
Re-wrote PARAVIS CORBA engine
[modules/paravis.git] / src / PVGUI / CMakeLists.txt
1 # Copyright (C) 2010-2014  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 INCLUDE(UseQt4Ext)
21
22 # --- options ---
23
24 INCLUDE_DIRECTORIES(${OMNIORB_INCLUDE_DIR} 
25     ${KERNEL_INCLUDE_DIRS}
26     ${GUI_INCLUDE_DIRS} 
27     ${PROJECT_BINARY_DIR}/idl 
28     ${PROJECT_BINARY_DIR} 
29     ${CAS_INCLUDE_DIRS} 
30     ${Boost_INCLUDE_DIRS}
31     ${QT_INCLUDES}
32     ${CMAKE_CURRENT_SOURCE_DIR}
33     )
34
35 # additional preprocessor / compiler flags
36 ADD_DEFINITIONS(${CAS_DEFINITIONS})
37 ADD_DEFINITIONS(${KERNEL_DEFINITIONS})
38 ADD_DEFINITIONS(${OMNIORB_DEFINITIONS})
39
40 # libraries to link to
41 SET(_PARAVIEW_APP_COMPO_LIB
42   pqApplicationComponents
43   )
44
45 SET(_link_LIBRARIES 
46   ${OMNIORB_LIBRARIES}
47   ${QT_LIBRARIES}
48   ${CAS_KERNEL}
49   ${PYTHON_LIBS}
50   ${KERNEL_LDFLAGS} ${KERNEL_SalomeDS} ${KERNEL_SALOMELocalTrace} ${KERNEL_SalomeIDLKernel} 
51                     ${KERNEL_SalomeNS} ${KERNEL_SalomeLifeCycleCORBA} ${KERNEL_SalomeContainer} ${KERNEL_TOOLSDS}
52   ${GUI_LDFLAGS} ${GUI_SalomeApp} ${GUI_LightApp} ${GUI_CAM} ${GUI_qtx} ${GUI_suit} ${GUI_Event} ${GUI_PyInterp} 
53                  ${GUI_SalomeObject} ${GUI_vtkTools}
54   ${MED_SalomeIDLMED}
55   ${_PARAVIEW_APP_COMPO_LIB}
56   SalomeIDLPARAVIS
57 )
58
59 # --- headers ---
60
61 # header files / to be processed by moc
62 SET(_moc_HEADERS
63   PVGUI_Module.h
64   PVGUI_ViewManager.h
65   PVGUI_ViewModel.h
66   PVGUI_ViewWindow.h
67   PVGUI_ParaViewSettingsPane.h
68 )
69
70 # header files / no moc processing
71 SET(_other_HEADERS
72   PVGUI_OutputWindowAdapter.h
73   PVGUI_Tools.h
74   #PVGUI_MatplotlibMathTextUtilities.h
75   PV_I.h
76   PARAVIS_Gen_i.hh
77   PV_Events.h
78 )
79
80 IF(NOT SALOME_PARAVIS_MINIMAL_CORBA)
81     LIST(APPEND _other_HEADERS PV_Tools.h)
82 ENDIF()
83
84 # header files / to install
85 SET(PVGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
86
87 # --- resources ---
88
89 # resource files / to be processed by lrelease
90 SET(_ts_RESOURCES
91   resources/PARAVIS_images.ts
92   resources/PARAVIS_msg_en.ts
93   resources/PARAVIS_msg_fr.ts
94   resources/PARAVIS_msg_ja.ts
95 )
96
97 # resource files / static
98 SET(_other_RESOURCES
99   # sampleservers.pvsc ???
100 )
101
102 IF(SALOME_BUILD_DOC)
103   # --- ParaView documentation is built as a resource ---
104   # Check ParaView documentation file existence
105   # if it exists add it to the resources (compile into binary form)
106   # otherwise print warning message
107   SET(PV_DOC_FILE ${VTK_INSTALL_PREFIX}/share/doc/paraview-${PARAVIEW_VERSION_MAJOR}.${PARAVIEW_VERSION_MINOR}/paraview.qch)
108   IF (EXISTS ${PV_DOC_FILE})
109     SET(RC_SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/PVGUI.qrc.in)
110     SET(RC_GENERATED ${CMAKE_CURRENT_BINARY_DIR}/PVGUI.qrc)
111     MESSAGE(STATUS "Creation of ${RC_GENERATED}")
112     CONFIGURE_FILE(${RC_SOURCE} ${RC_GENERATED})
113     SET(_rcc_RESOURCES ${RC_GENERATED})
114     ADD_DEFINITIONS(-DHAS_PV_DOC)
115   ELSE ()
116     MESSAGE(WARNING "Help file for ParaView has not been found! ParaView documentation will not be available.")
117   ENDIF ()
118 ENDIF()
119
120 # --- sources ---
121
122 # sources / rcc wrappings
123 QT4_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
124
125 # sources / moc wrappings
126 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
127
128 # sources / EDF specific stuff
129 INCLUDE(vtkWrapClientServer)
130 VTK_WRAP_ClientServer(vtkEDFCutterCS vtkEDFCutter_SRCS ${GUI_ROOT_DIR}/include/salome/vtkEDFCutter.h)
131
132 # sources / static
133 SET(_other_SOURCES
134   PVGUI_Module.cxx
135   PVGUI_Module_actions.cxx
136   PVGUI_Module_widgets.cxx
137   PVGUI_ViewManager.cxx
138   PVGUI_ViewModel.cxx
139   PVGUI_ViewWindow.cxx
140   PVGUI_OutputWindowAdapter.cxx
141   PVGUI_Tools.cxx
142   PVGUI_ParaViewSettingsPane.cxx
143   #PVGUI_MatplotlibMathTextUtilities.cxx
144   #PV_Tools.cxx
145   )
146
147 IF(NOT SALOME_PARAVIS_MINIMAL_CORBA)
148   # Generate headers and sources corresponding to the IDL implementations:
149   INCLUDE(${PROJECT_SOURCE_DIR}/src/VTKWrapping/wrap.cmake)
150
151   ## From 2.8.10, we should use:
152   ## SET(CMAKE_POSITION_INDEPENDENT_CODE ON)
153   SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
154
155   # Make the list of wrapped files visible from the top directory (will be used in idl):
156   SET(WRAP_IDL_I_HH "${WRAP_IDL_I_HH}" PARENT_SCOPE)
157   SET(WRAP_IDL_I_CC "${WRAP_IDL_I_CC}" PARENT_SCOPE)
158
159   SET(_VTK_wrap_SOURCES
160     PARAVIS_Gen_i.cc
161     PARAVIS_CreateClass.cxx
162     ${WRAP_IDL_I_CC}
163   )
164 ENDIF()
165   
166 # sources / to compile
167 SET(PVGUI_SOURCES 
168   ${_other_SOURCES} 
169   ${_moc_SOURCES} 
170   ${_rcc_SOURCES} 
171   ${vtkEDFCutter_SRCS} 
172   ${_VTK_wrap_SOURCES}
173   )
174
175 # --- rules ---
176
177 IF(NOT SALOME_PARAVIS_MINIMAL_CORBA)
178   ADD_CUSTOM_COMMAND(
179    OUTPUT PARAVIS_CreateClass.cxx
180     COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/src/VTKWrapping/create_class.py ${CMAKE_BINARY_DIR}
181     DEPENDS ${CMAKE_BINARY_DIR}/wrapfiles.txt 
182          ${PROJECT_BINARY_DIR}/idl/PARAVIS_Gen.hh 
183          ${PROJECT_BINARY_DIR}/idl/PARAVIS_Gen_Types.hh
184          SalomeIDLPARAVIS
185          generate_implements
186   )
187
188   # All wrapping tools have to be build before generating the above module - NEEDED?
189   ###ADD_DEPENDENCIES(SalomeIDLPARAVIS vtkWrapIDL_HH vtkWrapIDL_CC vtkWrapIDL)
190
191   # Intermediate target used in PVGUI directory (we can not cross reference
192   # a generated source file across directories, hence this trick):
193   INCLUDE_DIRECTORIES(
194     ${PROJECT_BINARY_DIR}/idl
195     ${PROJECT_BINARY_DIR}/src/VTKWrapping
196   )
197 ENDIF()
198
199 ADD_LIBRARY(PARAVIS ${PVGUI_SOURCES})
200 IF(NOT SALOME_PARAVIS_MINIMAL_CORBA)
201   # Make sure the generation of the VTK wrapping get executed first:
202   ADD_DEPENDENCIES(PARAVIS PARAVIS_CreateClass.cxx)
203 ENDIF()
204
205 IF(NOT SALOME_PARAVIS_MINIMAL_CORBA)
206   # Ensure .hh files corresponding to IDL have been generated first:
207   ADD_DEPENDENCIES(PARAVIS omniorb_module_SalomeIDLPARAVIS)  
208 ENDIF()
209
210 TARGET_LINK_LIBRARIES(PARAVIS ${_link_LIBRARIES})
211 INSTALL(TARGETS PARAVIS EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
212
213
214 # --- header and resources installation ---
215 INSTALL(FILES ${PVGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
216 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_PARAVIS_INSTALL_RES_DATA}")
217 INSTALL(FILES ${_other_RESOURCES} DESTINATION ${SALOME_PARAVIS_INSTALL_RES_DATA})