Salome HOME
0022616: [CEA 1038] Improve the quality of stl and vtk exports
[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   ${CMAKE_CURRENT_SOURCE_DIR}
43   )
44
45 # additional preprocessor / compiler flags
46 ADD_DEFINITIONS(
47   ${CAS_DEFINITIONS}
48   ${OMNIORB_DEFINITIONS}
49   ${QT_DEFINITIONS}
50   ${OPENCV_DEFINITIONS}
51   )
52
53 # libraries to link to
54 SET(_link_LIBRARIES
55   GEOMObject
56   GEOMClient
57   GEOMFiltersSelection
58   Material
59   GEOMImpl
60   GEOMUtils
61   ${KERNEL_SALOMELocalTrace}
62   ${KERNEL_SalomeDS}
63   ${KERNEL_SalomeDSClient}
64   ${GUI_SalomeApp}
65   )
66
67 # --- headers ---
68
69 SET(GEOMGUI_HEADERS
70   GeometryGUI.h
71   GeometryGUI_Operations.h
72   GEOMGUI.h
73   GEOMPluginGUI.h
74   GEOM_Displayer.h
75   GEOMGUI_OCCSelector.h
76   GEOMGUI_Selection.h
77   GEOM_GEOMGUI.hxx
78   GEOMGUI_CreationInfoWdg.h
79   GEOMGUI_DimensionProperty.h
80   )
81
82 # header files / to be processed by moc
83 SET(_moc_HEADERS 
84   GEOMGUI_CreationInfoWdg.h
85   GeometryGUI.h
86   )
87
88 # --- resources ---
89
90 # resource files / to be processed by rcc
91 SET(_rcc_RESOURCES GEOMGUI.qrc)
92
93 # resource files / to be processed by lrelease
94 SET(_ts_RESOURCES
95   GEOM_images.ts
96   GEOM_msg_en.ts
97   GEOM_msg_fr.ts
98   GEOM_msg_ja.ts
99 )
100
101 # --- sources ---
102
103 # sources / moc wrappings
104 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
105
106 # sources / rcc wrappings
107 QT4_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
108
109 SET(GEOMGUI_SOURCES
110   GeometryGUI.cxx
111   GEOMGUI.cxx
112   GEOMPluginGUI.cxx
113   GEOM_Displayer.cxx
114   GEOMGUI_OCCSelector.cxx
115   GEOMGUI_Selection.cxx
116   GEOMGUI_CreationInfoWdg.cxx
117   GEOMGUI_DimensionProperty.cxx
118   ${_moc_SOURCES}
119   ${_rcc_SOURCES}
120   )
121
122 # --- rules ---
123
124 ADD_LIBRARY(GEOM ${GEOMGUI_SOURCES})
125 TARGET_LINK_LIBRARIES(GEOM ${_link_LIBRARIES})
126 INSTALL(TARGETS GEOM EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
127
128 INSTALL(FILES ${GEOMGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
129 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")