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