Salome HOME
Fix pipe to avoid moving of the path, if it is passed through the first face.
[modules/shaper.git] / src / GeomAlgoAPI / CMakeLists.txt
1 ## Copyright (C) 2014-2017  CEA/DEN, EDF R&D
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
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 ##
20
21 FIND_PACKAGE(SWIG REQUIRED)
22
23 INCLUDE(${SWIG_USE_FILE})
24 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
25
26 SET(PROJECT_HEADERS
27     GeomAlgoAPI.h
28     GeomAlgoAPI_Tools.h
29     GeomAlgoAPI_CompoundBuilder.h
30     GeomAlgoAPI_FaceBuilder.h
31     GeomAlgoAPI_EdgeBuilder.h
32     GeomAlgoAPI_PointBuilder.h
33     GeomAlgoAPI_SketchBuilder.h
34     GeomAlgoAPI_Prism.h
35     GeomAlgoAPI_Revolution.h
36     GeomAlgoAPI_Boolean.h
37     GeomAlgoAPI_Rotation.h
38     GeomAlgoAPI_Translation.h
39     GeomAlgoAPI_MakeShape.h
40     GeomAlgoAPI_MakeShapeCustom.h
41     GeomAlgoAPI_MakeShapeList.h
42     GeomAlgoAPI_MakeSweep.h
43     GeomAlgoAPI_MakeVolume.h
44     GeomAlgoAPI_DFLoader.h
45     GeomAlgoAPI_Placement.h
46     GeomAlgoAPI_BREPImport.h
47     GeomAlgoAPI_STEPImport.h
48     GeomAlgoAPI_IGESImport.h
49     GeomAlgoAPI_BREPExport.h
50     GeomAlgoAPI_STEPExport.h
51     GeomAlgoAPI_IGESExport.h
52     GeomAlgoAPI_Transform.h
53     GeomAlgoAPI_ShapeTools.h
54     GeomAlgoAPI_Partition.h
55     GeomAlgoAPI_PaveFiller.h
56     GeomAlgoAPI_Intersection.h
57     GeomAlgoAPI_Pipe.h
58     GeomAlgoAPI_WireBuilder.h
59     GeomAlgoAPI_Sewing.h
60     GeomAlgoAPI_ShapeBuilder.h
61     GeomAlgoAPI_ShapeAPI.h
62     GeomAlgoAPI_Exception.h
63     GeomAlgoAPI_Box.h
64     GeomAlgoAPI_Cone.h
65     GeomAlgoAPI_Cylinder.h
66     GeomAlgoAPI_Sphere.h
67     GeomAlgoAPI_Torus.h
68     GeomAlgoAPI_XAOExport.h
69     GeomAlgoAPI_XAOImport.h
70     GeomAlgoAPI_Copy.h
71     GeomAlgoAPI_ConeSegment.h
72     GeomAlgoAPI_Ellipsoid.h
73     GeomAlgoAPI_Symmetry.h
74     GeomAlgoAPI_Scale.h
75     GeomAlgoAPI_Circ2dBuilder.h
76     GeomAlgoAPI_UnifySameDomain.h
77     GeomAlgoAPI_Fillet.h
78     GeomAlgoAPI_SortListOfShapes.h
79     GeomAlgoAPI_Filling.h
80     GeomAlgoAPI_CurveBuilder.h
81     GeomAlgoAPI_NExplode.h
82 )
83
84 SET(PROJECT_SOURCES
85     GeomAlgoAPI_Tools.cpp
86     GeomAlgoAPI_CompoundBuilder.cpp
87     GeomAlgoAPI_FaceBuilder.cpp
88     GeomAlgoAPI_EdgeBuilder.cpp
89     GeomAlgoAPI_PointBuilder.cpp
90     GeomAlgoAPI_SketchBuilder.cpp
91     GeomAlgoAPI_Prism.cpp
92     GeomAlgoAPI_Revolution.cpp
93     GeomAlgoAPI_Boolean.cpp
94     GeomAlgoAPI_Rotation.cpp
95     GeomAlgoAPI_Translation.cpp
96     GeomAlgoAPI_MakeShape.cpp
97     GeomAlgoAPI_MakeShapeCustom.cpp
98     GeomAlgoAPI_MakeShapeList.cpp
99     GeomAlgoAPI_MakeSweep.cpp
100     GeomAlgoAPI_MakeVolume.cpp
101     GeomAlgoAPI_DFLoader.cpp
102     GeomAlgoAPI_Placement.cpp
103     GeomAlgoAPI_BREPImport.cpp
104     GeomAlgoAPI_STEPImport.cpp
105     GeomAlgoAPI_IGESImport.cpp
106     GeomAlgoAPI_BREPExport.cpp
107     GeomAlgoAPI_STEPExport.cpp
108     GeomAlgoAPI_IGESExport.cpp
109     GeomAlgoAPI_Transform.cpp
110     GeomAlgoAPI_ShapeTools.cpp
111     GeomAlgoAPI_Partition.cpp
112     GeomAlgoAPI_PaveFiller.cpp
113     GeomAlgoAPI_Intersection.cpp
114     GeomAlgoAPI_Pipe.cpp
115     GeomAlgoAPI_WireBuilder.cpp
116     GeomAlgoAPI_Sewing.cpp
117     GeomAlgoAPI_ShapeBuilder.cpp
118     GeomAlgoAPI_ShapeAPI.cpp
119     GeomAlgoAPI_Exception.cpp
120     GeomAlgoAPI_Box.cpp
121     GeomAlgoAPI_Cone.cpp
122     GeomAlgoAPI_Cylinder.cpp
123     GeomAlgoAPI_Sphere.cpp
124     GeomAlgoAPI_Torus.cpp
125     GeomAlgoAPI_XAOExport.cpp
126     GeomAlgoAPI_XAOImport.cpp
127     GeomAlgoAPI_Copy.cpp
128     GeomAlgoAPI_ConeSegment.cpp
129     GeomAlgoAPI_Ellipsoid.cpp
130     GeomAlgoAPI_Symmetry.cpp
131     GeomAlgoAPI_Scale.cpp
132     GeomAlgoAPI_Circ2dBuilder.cpp
133     GeomAlgoAPI_UnifySameDomain.cpp
134     GeomAlgoAPI_Fillet.cpp
135     GeomAlgoAPI_SortListOfShapes.cpp
136     GeomAlgoAPI_Filling.cpp
137     GeomAlgoAPI_CurveBuilder.cpp
138     GeomAlgoAPI_NExplode.cpp
139 )
140
141 SET(PROJECT_LIBRARIES
142     GeomAPI
143     GeomAlgoImpl
144     ModelAPI
145     XAOShaper
146     ${OpenCASCADE_DataExchange_LIBRARIES}
147     ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
148     ${OpenCASCADE_ApplicationFramework_LIBRARIES}
149 )
150
151 ADD_DEFINITIONS(-DGEOMALGOAPI_EXPORTS ${OpenCASCADE_DEFINITIONS})
152 ADD_LIBRARY(GeomAlgoAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
153
154 SET(CMAKE_SWIG_FLAGS "-Wall")
155
156 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES CPLUSPLUS ON)
157 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
158
159 INCLUDE_DIRECTORIES(
160   ../GeomAPI
161   ../GeomAlgoImpl
162   ../ModelAPI
163   ../XAO
164   ${OpenCASCADE_INCLUDE_DIR}
165 )
166
167 TARGET_LINK_LIBRARIES(GeomAlgoAPI ${PROJECT_LIBRARIES})
168
169 SET(SWIG_SCRIPTS
170   ${CMAKE_CURRENT_BINARY_DIR}/GeomAlgoAPI.py
171 )
172
173 SET(SWIG_LINK_LIBRARIES
174   GeomAPI
175   GeomAlgoAPI
176   GeomAlgoImpl
177   ${PYTHON_LIBRARIES}
178 )
179
180 IF(${CMAKE_VERSION} VERSION_GREATER "3.8.0")
181   SWIG_ADD_LIBRARY(GeomAlgoAPI LANGUAGE python SOURCES GeomAlgoAPI.i ${PROJECT_HEADERS})
182 ELSE()
183   SWIG_ADD_MODULE(GeomAlgoAPI python GeomAlgoAPI.i ${PROJECT_HEADERS})
184 ENDIF()
185 SWIG_LINK_LIBRARIES(GeomAlgoAPI ${SWIG_LINK_LIBRARIES})
186
187 IF(WIN32)
188   SET_TARGET_PROPERTIES(_GeomAlgoAPI PROPERTIES DEBUG_OUTPUT_NAME _GeomAlgoAPI_d)
189 ENDIF(WIN32)
190
191 INSTALL(TARGETS _GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_SWIG})
192 INSTALL(TARGETS GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_BIN})
193 INSTALL(FILES ${SWIG_SCRIPTS} DESTINATION ${SHAPER_INSTALL_SWIG})
194