Salome HOME
updated copyright message
[modules/gui.git] / src / STD / 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   STD_Application.h
42   STD_MDIDesktop.h
43   STD_SDIDesktop.h
44   STD_TabDesktop.h
45 )
46
47 # header files / no moc processing
48 SET(_other_HEADERS STD.h)
49
50 # header files / to install
51 SET(std_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
52
53 # --- resources ---
54
55 # resource files / to be processed by lrelease
56 SET(_ts_RESOURCES
57   resources/STD_images.ts
58   resources/STD_msg_en.ts
59   resources/STD_msg_fr.ts
60   resources/STD_msg_ja.ts
61 )
62
63 # resource files / static
64 SET(_other_RESOURCES
65   resources/cascade.png
66   resources/close.png
67   resources/copy.png
68   resources/cut.png
69   resources/delete.png
70   resources/help.png
71   resources/htile.png
72   resources/new.png
73   resources/open.png
74   resources/paste.png
75   resources/print.png
76   resources/redo.png
77   resources/reset.png
78   resources/save.png
79   resources/undo.png
80   resources/vtile.png
81   resources/about.png
82 )
83
84 # --- sources ---
85
86 # sources / moc wrappings
87 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
88
89 # sources / static
90 SET(_other_SOURCES
91   STD_Application.cxx
92   STD_MDIDesktop.cxx
93   STD_SDIDesktop.cxx
94   STD_TabDesktop.cxx
95 )
96
97 # sources / to compile
98 SET(std_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
99
100 # --- rules ---
101
102 ADD_LIBRARY(std ${std_SOURCES})
103 TARGET_LINK_LIBRARIES(std ${_link_LIBRARIES})
104 INSTALL(TARGETS std EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
105
106 INSTALL(FILES ${std_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
107 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
108
109 INSTALL(FILES ${_other_RESOURCES} DESTINATION ${SALOME_GUI_INSTALL_RES_DATA})