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