Salome HOME
Copyright update: 2016
[modules/gui.git] / src / TOOLSGUI / CMakeLists.txt
1 # Copyright (C) 2012-2016  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(UseQt4Ext)
21
22 # --- options ---
23 INCLUDE_DIRECTORIES(
24   ${QT_INCLUDES}
25   ${CAS_INCLUDE_DIRS}
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   ${CAS_DEFINITIONS}
37   ${BOOST_DEFINITIONS}
38   ${OMNIORB_DEFINITIONS}
39 )
40
41 # libraries to link to
42 SET(_link_LIBRARIES
43   ${QT_LIBRARIES}
44   ${CAS_KERNEL}
45   ${KERNEL_SalomeIDLKernel}
46   ${KERNEL_SALOMELocalTrace}
47   ${KERNEL_SalomeNS}
48   ${KERNEL_OpUtil}
49   ${OMNIORB_LIBRARIES}
50   qtx suit
51 )
52
53 # --- headers ---
54
55 # header files / to be processed by moc
56 SET(_moc_HEADERS
57   ToolsGUI_CatalogGeneratorDlg.h
58   ToolsGUI_RegWidget.h
59 )
60
61 # header files / no moc processing
62 SET(_other_HEADERS
63   ToolsGUI.h
64 )
65
66 # header files / to install
67 SET(ToolsGUI_HEADERS ${_moc_HEADERS} ${_other_HEADERS})
68
69 # --- resources ---
70
71 # resource files / to be processed by lrelease
72 SET(_ts_RESOURCES
73   resources/ToolsGUI_msg_en.ts
74   resources/ToolsGUI_msg_fr.ts
75   resources/ToolsGUI_msg_ja.ts
76
77
78 # --- sources ---
79
80 # sources / moc wrappings
81 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
82
83 # sources / static
84 SET(_other_SOURCES
85   ToolsGUI.cxx
86   ToolsGUI_CatalogGeneratorDlg.cxx
87   ToolsGUI_RegWidget.cxx
88 )
89
90 # sources / to compile
91 SET(ToolsGUI_SOURCES ${_other_SOURCES} ${_moc_SOURCES})
92
93 # --- rules ---
94
95 ADD_LIBRARY(ToolsGUI ${ToolsGUI_SOURCES})
96 TARGET_LINK_LIBRARIES(ToolsGUI ${_link_LIBRARIES})
97 INSTALL(TARGETS ToolsGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
98
99 INSTALL(FILES ${ToolsGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
100 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GUI_INSTALL_RES_DATA}")
101