Salome HOME
updated copyright message
[modules/gui.git] / src / QxScene / CMakeLists.txt
1 # Copyright (C) 2012-2023  CEA, EDF, OPEN CASCADE
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(UseQtExt)
21
22 # --- options ---
23
24 # additional include directories
25 INCLUDE_DIRECTORIES(
26   ${QT_INCLUDES}
27   ${PROJECT_SOURCE_DIR}/src/Qtx
28   ${PROJECT_SOURCE_DIR}/src/SUIT
29 )
30
31 # additional preprocessor / compiler flags
32 ADD_DEFINITIONS(${QT_DEFINITIONS})
33
34 # libraries to link to
35 SET(_link_LIBRARIES ${QT_LIBRARIES} qtx suit)
36
37 # --- headers ---
38
39 # header files / to be processed by moc
40 SET(_moc_HEADERS   
41   QxScene_ViewManager.h
42   QxScene_ViewModel.h
43   QxScene_ViewWindow.h
44 )
45
46 # header files / no moc processing
47 SET(_other_HEADERS
48   QxScene.h
49   QxScene_Def.h
50 )
51
52 # header files / to install
53 SET(QxScene_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
54
55 # --- resources ---
56
57 # resource files / to be processed by lrelease
58 SET(_ts_RESOURCES
59   resources/QxSceneViewer_images.ts
60   resources/QxSceneViewer_msg_en.ts
61   resources/QxSceneViewer_msg_fr.ts
62   resources/QxSceneViewer_msg_ja.ts
63 )
64
65 # resource files / static
66 SET(_other_RESOURCES
67   resources/qx_view_fitall.png
68   resources/qx_view_fitarea.png
69   resources/qx_view_glpan.png
70   resources/qx_view_pan.png
71   resources/qx_view_reset.png
72   resources/qx_view_zoom.png
73 )
74
75 # --- sources ---
76
77 # sources / moc wrappings
78 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
79
80 # sources / static
81 SET(_other_SOURCES
82   QxScene_ViewManager.cxx
83   QxScene_ViewModel.cxx
84   QxScene_ViewWindow.cxx
85 )
86
87 # sources / to compile
88 SET(QxScene_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
89
90 # --- rules ---
91
92 ADD_LIBRARY(QxScene ${QxScene_SOURCES})
93 TARGET_LINK_LIBRARIES(QxScene ${_link_LIBRARIES})
94 INSTALL(TARGETS QxScene EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
95
96 INSTALL(FILES ${QxScene_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
97 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
98
99 INSTALL(FILES ${_other_RESOURCES} DESTINATION ${SALOME_GUI_INSTALL_RES_DATA})