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