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