]> SALOME platform Git repositories - modules/geom.git/blob - src/EntityGUI/CMakeLists.txt
Salome HOME
Merge remote-tracking branch 'origin/master' into rnc/t_shape_plugin
[modules/geom.git] / src / EntityGUI / 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/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_SubShapeDlg.h
112   EntityGUI_FeatureDetectorDlg.h
113   EntityGUI_PictureImportDlg.h
114   )
115
116 # header files / to be processed by moc
117 SET(_moc_HEADERS
118   EntityGUI_Widgets.h
119   EntityGUI_FieldDlg.h
120   EntityGUI_SketcherDlg.h
121   EntityGUI_PolylineDlg.h
122   EntityGUI_3DSketcherDlg.h
123   EntityGUI_IsolineDlg.h
124   EntityGUI_SubShapeDlg.h
125   EntityGUI_PictureImportDlg.h
126   ${FeatureDetectorDlg_moc_h}
127   )
128
129 # header files / uic wrappings
130 QT4_WRAP_UI(_uic_HEADERS ${_uic_files})
131
132 # --- sources ---
133
134 # sources / moc wrappings
135 QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
136
137 SET(EntityGUI_SOURCES
138   EntityGUI.cxx
139   EntityGUI_Widgets.cxx
140   EntityGUI_FieldDlg.cxx
141   EntityGUI_SketcherDlg.cxx
142   EntityGUI_PolylineDlg.cxx
143   EntityGUI_3DSketcherDlg.cxx
144   EntityGUI_IsolineDlg.cxx
145   EntityGUI_SubShapeDlg.cxx
146   EntityGUI_PictureImportDlg.cxx
147   ${FeatureDetectorDlg_Sources}
148   ${_moc_SOURCES}
149   ${_uic_files}
150   )
151
152 # --- rules ---
153
154 ADD_LIBRARY(EntityGUI ${EntityGUI_SOURCES})
155 TARGET_LINK_LIBRARIES(EntityGUI ${_link_LIBRARIES})
156 INSTALL(TARGETS EntityGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})