Salome HOME
55fd4e54c2ad5e18d7cd4e929684ed324a7a7a03
[modules/gui.git] / src / TOOLSGUI / CMakeLists.txt
1 # Copyright (C) 2012-2022  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 INCLUDE_DIRECTORIES(
24   ${QT_INCLUDES}
25   ${OpenCASCADE_INCLUDE_DIR}
26   ${OMNIORB_INCLUDE_DIR}
27   ${Boost_INCLUDE_DIRS}
28   ${PTHREAD_INCLUDE_DIR}
29   ${PROJECT_SOURCE_DIR}/src/Qtx
30   ${PROJECT_SOURCE_DIR}/src/SUIT
31 )
32
33 # additional preprocessor / compiler flags
34 ADD_DEFINITIONS(
35   ${QT_DEFINITIONS}
36   ${OpenCASCADE_DEFINITIONS}
37   ${BOOST_DEFINITIONS}
38   ${OMNIORB_DEFINITIONS}
39 )
40
41 # libraries to link to
42 SET(_link_LIBRARIES
43   ${QT_LIBRARIES}
44   ${OpenCASCADE_FoundationClasses_LIBRARIES}
45   ${KERNEL_SalomeIDLKernel}
46   ${KERNEL_SALOMELocalTrace}
47   ${KERNEL_SalomeDSClient}
48   ${KERNEL_SalomeNS}
49   ${KERNEL_OpUtil}
50   ${KERNEL_SalomeKernelHelpers}
51   ${OMNIORB_LIBRARIES}
52   qtx suit
53 )
54
55 # --- headers ---
56
57 # header files / to be processed by moc
58 SET(_moc_HEADERS
59   ToolsGUI_CatalogGeneratorDlg.h
60   ToolsGUI_RegWidget.h
61 )
62
63 # header files / no moc processing
64 SET(_other_HEADERS
65   ToolsGUI.h
66 )
67
68 # header files / to install
69 SET(ToolsGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
70
71 # --- resources ---
72
73 # resource files / to be processed by lrelease
74 SET(_ts_RESOURCES
75   resources/ToolsGUI_msg_en.ts
76   resources/ToolsGUI_msg_fr.ts
77   resources/ToolsGUI_msg_ja.ts
78
79
80 # --- sources ---
81
82 # sources / moc wrappings
83 QT_WRAP_MOC(_moc_SOURCES ${_moc_HEADERS})
84
85 # sources / static
86 SET(_other_SOURCES
87   ToolsGUI.cxx
88   ToolsGUI_CatalogGeneratorDlg.cxx
89   ToolsGUI_RegWidget.cxx
90 )
91
92 # sources / to compile
93 SET(ToolsGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
94
95 # --- rules ---
96
97 ADD_LIBRARY(ToolsGUI ${ToolsGUI_SOURCES})
98 TARGET_LINK_LIBRARIES(ToolsGUI ${_link_LIBRARIES})
99 INSTALL(TARGETS ToolsGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
100
101 INSTALL(FILES ${ToolsGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
102 QT_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")