Salome HOME
Copyrights update 2015.
[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/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   )
71
72 # optional sources
73 IF(SALOME_GEOM_USE_OPENCV)
74   SET( FeatureDetectorDlg_Sources EntityGUI_FeatureDetectorDlg.cxx )
75   SET( FeatureDetectorDlg_moc_h   EntityGUI_FeatureDetectorDlg.h )
76   LIST(APPEND _link_LIBRARIES GEOMShapeRec)
77 ENDIF()
78
79 # --- resources ---
80
81 # resource files / to be processed by uic
82 SET(_uic_files
83   EntityGUI_1Sel1Spin1Check_QTD.ui
84   EntityGUI_1Sel1Spin_QTD.ui
85   EntityGUI_1Sel_QTD.ui
86   EntityGUI_1Spin_QTD.ui
87   EntityGUI_2Sel1Check_QTD.ui
88   EntityGUI_2Spin_QTD.ui
89   EntityGUI_3Spin1Check_QTD.ui
90   EntityGUI_3Spin_QTD.ui
91   EntityGUI_4Spin1Check_QTD.ui
92   EntityGUI_4Spin_QTD.ui
93   EntityGUI_Angles_QTD.ui
94   EntityGUI_Controls_QTD.ui
95   EntityGUI_Dir1_QTD.ui
96   EntityGUI_Dir2_QTD.ui
97   EntityGUI_Point_QTD.ui
98   EntityGUI_Skeleton_QTD.ui
99   EntityGUI_Type_QTD.ui
100   )
101
102 # --- headers ---
103
104 SET(EntityGUI_HEADERS
105   EntityGUI.h
106   EntityGUI_Widgets.h
107   EntityGUI_SketcherDlg.h
108   EntityGUI_PolylineDlg.h
109   EntityGUI_3DSketcherDlg.h
110   EntityGUI_IsolineDlg.h
111   EntityGUI_SurfFromFaceDlg.h
112   EntityGUI_SubShapeDlg.h
113   EntityGUI_FeatureDetectorDlg.h
114   EntityGUI_PictureImportDlg.h
115   )
116
117 # header files / to be processed by moc
118 SET(_moc_HEADERS
119   EntityGUI_Widgets.h
120   EntityGUI_FieldDlg.h
121   EntityGUI_SketcherDlg.h
122   EntityGUI_PolylineDlg.h
123   EntityGUI_3DSketcherDlg.h
124   EntityGUI_IsolineDlg.h
125   EntityGUI_SurfFromFaceDlg.h
126   EntityGUI_SubShapeDlg.h
127   EntityGUI_PictureImportDlg.h
128   ${FeatureDetectorDlg_moc_h}
129   )
130
131 # header files / uic wrappings
132 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
133
134 # --- sources ---
135
136 # sources / moc wrappings
137 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
138
139 SET(EntityGUI_SOURCES
140   EntityGUI.cxx
141   EntityGUI_Widgets.cxx
142   EntityGUI_FieldDlg.cxx
143   EntityGUI_SketcherDlg.cxx
144   EntityGUI_PolylineDlg.cxx
145   EntityGUI_3DSketcherDlg.cxx
146   EntityGUI_IsolineDlg.cxx
147   EntityGUI_SurfFromFaceDlg.cxx
148   EntityGUI_SubShapeDlg.cxx
149   EntityGUI_PictureImportDlg.cxx
150   ${FeatureDetectorDlg_Sources}
151   ${_moc_SOURCES}
152   ${_uic_files}
153   )
154
155 # --- rules ---
156
157 ADD_LIBRARY(EntityGUI ${EntityGUI_SOURCES})
158 TARGET_LINK_LIBRARIES(EntityGUI ${_link_LIBRARIES})
159 INSTALL(TARGETS EntityGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})