Salome HOME
0bc1a8c2f0e9b6f2a81bce83585f5e62eb203663
[modules/gui.git] / src / GraphicsView / CMakeLists.txt
1 # Copyright (C) 2012-2023  CEA/DEN, EDF R&D, 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   ${PROJECT_SOURCE_DIR}/src/ImageComposer
30 )
31
32 # additional preprocessor / compiler flags
33 ADD_DEFINITIONS(${QT_DEFINITIONS})
34
35 # libraries to link to
36 SET(_link_LIBRARIES ${QT_LIBRARIES} qtx suit ImageComposer)
37
38 # --- headers ---
39
40 # header files / to be processed by moc
41 SET(_moc_HEADERS   
42   GraphicsView_Scene.h
43   GraphicsView_Selector.h
44   GraphicsView_ViewFrame.h
45   GraphicsView_ViewManager.h
46   GraphicsView_ViewPort.h
47   GraphicsView_Viewer.h
48 )
49
50 # header files / no moc processing
51 SET(_other_HEADERS
52   GraphicsView.h
53   GraphicsView_Defs.h
54   GraphicsView_Object.h
55   GraphicsView_ViewTransformer.h
56 )
57
58 # header files / to install
59 SET(GraphicsView_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
60
61 # --- resources ---
62
63 # resource files / to be processed by lrelease
64 SET(_ts_RESOURCES
65   resources/GraphicsView_images.ts
66   resources/GraphicsView_msg_en.ts
67   resources/GraphicsView_msg_fr.ts
68   resources/GraphicsView_msg_ja.ts
69 )
70
71 # resource files / static
72 SET(_other_RESOURCES
73   resources/graphics_view_cursor_zoom.png
74   resources/graphics_view_dump.png
75   resources/graphics_view_fitall.png
76   resources/graphics_view_fitarea.png
77   resources/graphics_view_fitselect.png
78   resources/graphics_view_glpan.png
79   resources/graphics_view_pan.png
80   resources/graphics_view_reset.png
81   resources/graphics_view_rotate.png
82   resources/graphics_view_zoom.png
83 )
84
85 # --- sources ---
86
87 # sources / moc wrappings
88 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
89
90 # sources / static
91 SET(_other_SOURCES
92   GraphicsView_Object.cxx
93   GraphicsView_Scene.cxx
94   GraphicsView_Selector.cxx
95   GraphicsView_ViewFrame.cxx
96   GraphicsView_ViewManager.cxx
97   GraphicsView_ViewPort.cxx
98   GraphicsView_ViewTransformer.cxx
99   GraphicsView_Viewer.cxx
100 )
101
102 # sources / to compile
103 SET(GraphicsView_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
104
105 # --- rules ---
106
107 ADD_LIBRARY(GraphicsView ${GraphicsView_SOURCES})
108 TARGET_LINK_LIBRARIES(GraphicsView ${_link_LIBRARIES})
109 INSTALL(TARGETS GraphicsView EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
110
111 INSTALL(FILES ${GraphicsView_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
112 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
113
114 INSTALL(FILES ${_other_RESOURCES} DESTINATION ${SALOME_GUI_INSTALL_RES_DATA})