Salome HOME
0bb93f921c92435cfd152cf93f47709b534d103f
[modules/geom.git] / src / EntityGUI / 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/GEOMClient
38   ${PROJECT_SOURCE_DIR}/src/GEOMUtils
39   ${PROJECT_SOURCE_DIR}/src/GEOMImpl
40   ${PROJECT_SOURCE_DIR}/src/GEOMGUI
41   ${PROJECT_SOURCE_DIR}/src/GEOMBase
42   ${PROJECT_SOURCE_DIR}/src/MeasureGUI
43   ${PROJECT_SOURCE_DIR}/src/SKETCHER
44   ${PROJECT_SOURCE_DIR}/src/CurveCreator
45   ${PROJECT_SOURCE_DIR}/src/ShapeRecognition
46   ${PROJECT_SOURCE_DIR}/src/DlgRef
47   ${PROJECT_BINARY_DIR}/src/DlgRef
48   ${CMAKE_CURRENT_SOURCE_DIR}
49   ${CMAKE_CURRENT_BINARY_DIR}
50   )
51
52 # additional preprocessor / compiler flags
53 ADD_DEFINITIONS(
54   ${CAS_DEFINITIONS}
55   ${OMNIORB_DEFINITIONS}
56   ${QT_DEFINITIONS}
57   ${OPENCV_DEFINITIONS}
58   )
59
60 # libraries to link to
61 SET(_link_LIBRARIES
62   GEOMObject
63   GEOMClient
64   GEOMUtils
65   GEOMImpl
66   GEOMBase
67   GEOM
68   DlgRef
69   GEOMSketcher
70   CurveCreator
71   MeasureGUI
72   )
73
74 # optional sources
75 IF(SALOME_GEOM_USE_OPENCV)
76   SET( FeatureDetectorDlg_Sources EntityGUI_FeatureDetectorDlg.cxx )
77   SET( FeatureDetectorDlg_moc_h   EntityGUI_FeatureDetectorDlg.h )
78   LIST(APPEND _link_LIBRARIES GEOMShapeRec)
79 ENDIF()
80
81 # --- resources ---
82
83 # resource files / to be processed by uic
84 SET(_uic_files
85   EntityGUI_1Sel1Spin1Check_QTD.ui
86   EntityGUI_1Sel1Spin_QTD.ui
87   EntityGUI_1Sel_QTD.ui
88   EntityGUI_1Spin_QTD.ui
89   EntityGUI_2Sel1Check_QTD.ui
90   EntityGUI_2Spin_QTD.ui
91   EntityGUI_3Spin1Check_QTD.ui
92   EntityGUI_3Spin_QTD.ui
93   EntityGUI_4Spin1Check_QTD.ui
94   EntityGUI_4Spin_QTD.ui
95   EntityGUI_Angles_QTD.ui
96   EntityGUI_Controls_QTD.ui
97   EntityGUI_Dir1_QTD.ui
98   EntityGUI_Dir2_QTD.ui
99   EntityGUI_Point_QTD.ui
100   EntityGUI_Skeleton_QTD.ui
101   EntityGUI_Type_QTD.ui
102   )
103
104 # --- headers ---
105
106 SET(EntityGUI_HEADERS
107   EntityGUI.h
108   EntityGUI_Widgets.h
109   EntityGUI_SketcherDlg.h
110   EntityGUI_PolylineDlg.h
111   EntityGUI_3DSketcherDlg.h
112   EntityGUI_IsolineDlg.h
113   EntityGUI_SurfFromFaceDlg.h
114   EntityGUI_SubShapeDlg.h
115   EntityGUI_FeatureDetectorDlg.h
116   EntityGUI_PictureImportDlg.h
117   )
118
119 # header files / to be processed by moc
120 SET(_moc_HEADERS
121   EntityGUI_Widgets.h
122   EntityGUI_FieldDlg.h
123   EntityGUI_SketcherDlg.h
124   EntityGUI_PolylineDlg.h
125   EntityGUI_3DSketcherDlg.h
126   EntityGUI_IsolineDlg.h
127   EntityGUI_SurfFromFaceDlg.h
128   EntityGUI_SubShapeDlg.h
129   EntityGUI_PictureImportDlg.h
130   ${FeatureDetectorDlg_moc_h}
131   )
132
133 # header files / uic wrappings
134 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
135
136 # --- sources ---
137
138 # sources / moc wrappings
139 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
140
141 SET(EntityGUI_SOURCES
142   EntityGUI.cxx
143   EntityGUI_Widgets.cxx
144   EntityGUI_FieldDlg.cxx
145   EntityGUI_SketcherDlg.cxx
146   EntityGUI_PolylineDlg.cxx
147   EntityGUI_3DSketcherDlg.cxx
148   EntityGUI_IsolineDlg.cxx
149   EntityGUI_SurfFromFaceDlg.cxx
150   EntityGUI_SubShapeDlg.cxx
151   EntityGUI_PictureImportDlg.cxx
152   ${FeatureDetectorDlg_Sources}
153   ${_moc_SOURCES}
154   ${_uic_files}
155   )
156
157 # --- rules ---
158
159 ADD_LIBRARY(EntityGUI ${EntityGUI_SOURCES})
160 TARGET_LINK_LIBRARIES(EntityGUI ${_link_LIBRARIES})
161 INSTALL(TARGETS EntityGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})