Salome HOME
updated copyright message
[modules/gui.git] / src / Style / 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 )
29
30 # additional preprocessor / compiler flags
31 ADD_DEFINITIONS(${QT_DEFINITIONS})
32
33 # libraries to link to
34 SET(_link_LIBRARIES ${QT_LIBRARIES} qtx)
35
36 # --- headers ---
37
38 # header files / to be processed by moc
39 SET(_moc_HEADERS
40   Style_PrefDlg.h
41   Style_Salome.h
42 )
43
44 # header files / internal
45 # no processing currently: TODO: check for MSVS project
46 SET(_internal_HEADERS
47   Style_Model.h
48   Style_ResourceMgr.h
49   Style_Tools.h
50 )
51
52 # header files / no moc processing
53 SET(_other_HEADERS
54   Style.h
55 )
56
57 # header files / to install (internal ones are excluded)
58 SET(SalomeStyle_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
59
60 # --- resources ---
61
62 # resource files / to be processed by rcc
63 SET(_rcc_RESOURCES Style.qrc)
64
65 # resource files / to be processed by lrelease
66 SET(_ts_RESOURCES resources/Style_msg_fr.ts
67                   resources/Style_msg_ja.ts)
68
69 # resource files / other (static)
70 SET(_other_RESOURCES resources/SalomeStyle.xml)
71
72 # --- sources ---
73
74 # sources / moc wrappings
75 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
76
77 # sources / rcc wrappings
78 QT_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
79
80 # sources / static
81 SET(_other_SOURCES
82   Style_Model.cxx
83   Style_PrefDlg.cxx
84   Style_ResourceMgr.cxx
85   Style_Salome.cxx
86   Style_Tools.cxx
87 )
88
89 # sources / to compile
90 SET(SalomeStyle_SOURCES ${_other_SOURCES} ${_moc_SOURCES} ${_rcc_SOURCES})
91
92 # --- rules ---
93
94 ADD_LIBRARY(SalomeStyle ${SalomeStyle_SOURCES})
95 TARGET_LINK_LIBRARIES(SalomeStyle ${_link_LIBRARIES})
96 INSTALL(TARGETS SalomeStyle EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
97
98 INSTALL(FILES ${SalomeStyle_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
99 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
100
101 INSTALL(FILES "${_other_RESOURCES}" DESTINATION ${SALOME_GUI_INSTALL_RES_DATA})