Salome HOME
fa3791cc85ede57957fb3606cb059d4d553a5ee7
[modules/gui.git] / src / ViewerTools / CMakeLists.txt
1 # Copyright (C) 2012-2024  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
35   ${QT_LIBRARIES}
36   ${KERNEL_SALOMELocalTrace}
37   qtx)
38
39 # --- headers ---
40
41 # header files / to be processed by moc
42 SET(_moc_HEADERS   
43   ViewerTools_CubeAxesDlgBase.h
44   ViewerTools_DialogBase.h
45   ViewerTools_FontWidgetBase.h
46   ViewerTools_ScreenScaling.h
47 )
48
49 # header files / no moc processing
50 SET(_other_HEADERS ViewerTools.h)
51
52 # header files / to install
53 SET(ViewerTools_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
54
55 # --- resources ---
56
57 # resource files / to be processed by lrelease
58 SET(_ts_RESOURCES
59   resources/ViewerTools_msg_en.ts
60   resources/ViewerTools_msg_fr.ts
61   resources/ViewerTools_msg_ja.ts
62 )
63
64 # --- sources ---
65
66 # sources / moc wrappings
67 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
68
69 # sources / static
70 SET(_other_SOURCES
71   ViewerTools_CubeAxesDlgBase.cxx
72   ViewerTools_DialogBase.cxx
73   ViewerTools_FontWidgetBase.cxx
74   ViewerTools_ScreenScaling.cxx
75 )
76
77 # sources / to compile
78 SET(ViewerTools_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
79
80 # --- rules ---
81
82 ADD_LIBRARY(ViewerTools ${ViewerTools_SOURCES})
83 TARGET_LINK_LIBRARIES(ViewerTools ${_link_LIBRARIES})
84 INSTALL(TARGETS ViewerTools EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
85
86 INSTALL(FILES ${ViewerTools_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
87 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")