]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/CMakeLists.txt
Salome HOME
9ac75127391f5fa7b996e5fad287881159041484
[modules/geom.git] / src / GEOMGUI / CMakeLists.txt
1 # Copyright (C) 2012-2014  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 INCLUDE(${QT_USE_FILE})
22
23 # --- options ---
24
25 # additional include directories
26 INCLUDE_DIRECTORIES(
27   ${QT_INCLUDE_DIRS}
28   ${PTHREAD_INCLUDE_DIR}
29   ${VTK_INCLUDE_DIRS}
30   ${OMNIORB_INCLUDE_DIR}
31   ${CAS_INCLUDE_DIRS}
32   ${KERNEL_INCLUDE_DIRS}
33   ${GUI_INCLUDE_DIRS}
34   ${PROJECT_BINARY_DIR}/idl
35   ${PROJECT_BINARY_DIR}
36   ${PROJECT_SOURCE_DIR}/src/OBJECT
37   ${PROJECT_SOURCE_DIR}/src/GEOMFiltersSelection
38   ${PROJECT_SOURCE_DIR}/src/Material
39   ${PROJECT_SOURCE_DIR}/src/GEOMClient
40   ${PROJECT_SOURCE_DIR}/src/GEOMImpl
41   ${PROJECT_SOURCE_DIR}/src/GEOMUtils
42   ${PROJECT_SOURCE_DIR}/src/DependencyTree
43   ${CMAKE_CURRENT_SOURCE_DIR}
44   )
45
46 # additional preprocessor / compiler flags
47 ADD_DEFINITIONS(
48   ${CAS_DEFINITIONS}
49   ${OMNIORB_DEFINITIONS}
50   ${QT_DEFINITIONS}
51   ${OPENCV_DEFINITIONS}
52   )
53
54 # libraries to link to
55 SET(_link_LIBRARIES
56   GEOMObject
57   GEOMClient
58   GEOMFiltersSelection
59   Material
60   GEOMImpl
61   GEOMUtils
62   DependencyTree
63   ${KERNEL_SALOMELocalTrace}
64   ${KERNEL_SalomeDS}
65   ${KERNEL_SalomeDSClient}
66   ${GUI_SalomeApp}
67   ${QT_QTXML_LIBRARY}
68   )
69
70 # --- headers ---
71
72 SET(GEOMGUI_HEADERS
73   GeometryGUI.h
74   GeometryGUI_Operations.h
75   GEOMGUI.h
76   GEOMPluginGUI.h
77   GEOMGUI_XmlHandler.h
78   GEOM_Displayer.h
79   GEOMGUI_OCCSelector.h
80   GEOMGUI_Selection.h
81   GEOM_GEOMGUI.hxx
82   GEOMGUI_CreationInfoWdg.h
83   GEOMGUI_DimensionProperty.h
84   )
85
86 # header files / to be processed by moc
87 SET(_moc_HEADERS 
88   GEOMGUI_CreationInfoWdg.h
89   GeometryGUI.h
90   )
91
92 # --- resources ---
93
94 # resource files / to be processed by rcc
95 SET(_rcc_RESOURCES GEOMGUI.qrc)
96
97 # resource files / to be processed by lrelease
98 SET(_ts_RESOURCES
99   GEOM_images.ts
100   GEOM_msg_en.ts
101   GEOM_msg_fr.ts
102   GEOM_msg_ja.ts
103 )
104
105 # --- sources ---
106
107 # sources / moc wrappings
108 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
109
110 # sources / rcc wrappings
111 QT4_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
112
113 SET(GEOMGUI_SOURCES
114   GeometryGUI.cxx
115   GEOMGUI.cxx
116   GEOMPluginGUI.cxx
117   GEOMGUI_XmlHandler.cxx
118   GEOM_Displayer.cxx
119   GEOMGUI_OCCSelector.cxx
120   GEOMGUI_Selection.cxx
121   GEOMGUI_CreationInfoWdg.cxx
122   GEOMGUI_DimensionProperty.cxx
123   ${_moc_SOURCES}
124   ${_rcc_SOURCES}
125   )
126
127 # --- rules ---
128
129 ADD_LIBRARY(GEOM ${GEOMGUI_SOURCES})
130 TARGET_LINK_LIBRARIES(GEOM ${_link_LIBRARIES})
131 INSTALL(TARGETS GEOM EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
132
133 INSTALL(FILES ${GEOMGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
134 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")