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