Salome HOME
curve creator: bring together two extremities of two sections of polylines
[modules/geom.git] / src / GEOMGUI / CMakeLists.txt
1 # Copyright (C) 2012-2015  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_TextTreeWdg.h
80   GEOMGUI_DimensionProperty.h
81   )
82
83 # header files / to be processed by moc
84 SET(_moc_HEADERS 
85   GEOMGUI_CreationInfoWdg.h
86   GEOMGUI_TextTreeWdg.h
87   GeometryGUI.h
88   )
89
90 # --- resources ---
91
92 # resource files / to be processed by rcc
93 SET(_rcc_RESOURCES GEOMGUI.qrc)
94
95 # resource files / to be processed by lrelease
96 SET(_ts_RESOURCES
97   GEOM_images.ts
98   GEOM_msg_en.ts
99   GEOM_msg_fr.ts
100   GEOM_msg_ja.ts
101 )
102
103 # --- sources ---
104
105 # sources / moc wrappings
106 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
107
108 # sources / rcc wrappings
109 QT4_ADD_RESOURCES(_rcc_SOURCES ${_rcc_RESOURCES})
110
111 SET(GEOMGUI_SOURCES
112   GeometryGUI.cxx
113   GEOMGUI.cxx
114   GEOMPluginGUI.cxx
115   GEOM_Displayer.cxx
116   GEOMGUI_OCCSelector.cxx
117   GEOMGUI_Selection.cxx
118   GEOMGUI_CreationInfoWdg.cxx
119   GEOMGUI_TextTreeWdg.cxx
120   GEOMGUI_DimensionProperty.cxx
121   ${_moc_SOURCES}
122   ${_rcc_SOURCES}
123   )
124
125 # --- rules ---
126
127 ADD_LIBRARY(GEOM ${GEOMGUI_SOURCES})
128 TARGET_LINK_LIBRARIES(GEOM ${_link_LIBRARIES})
129 INSTALL(TARGETS GEOM EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
130
131 INSTALL(FILES ${GEOMGUI_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
132 QT4_INSTALL_TS_RESOURCES("${_ts_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")