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