Salome HOME
add import stl file
[modules/shaper.git] / src / GeomAlgoAPI / CMakeLists.txt
1 # Copyright (C) 2014-2020  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 email : webmaster.salome@opencascade.com
18 #
19
20 FIND_PACKAGE(SWIG REQUIRED)
21
22 INCLUDE(${SWIG_USE_FILE})
23 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
24
25 SET(PROJECT_HEADERS
26     GeomAlgoAPI.h
27     GeomAlgoAPI_Tools.h
28     GeomAlgoAPI_CompoundBuilder.h
29     GeomAlgoAPI_FaceBuilder.h
30     GeomAlgoAPI_EdgeBuilder.h
31     GeomAlgoAPI_PointBuilder.h
32     GeomAlgoAPI_SketchBuilder.h
33     GeomAlgoAPI_Prism.h
34     GeomAlgoAPI_Revolution.h
35     GeomAlgoAPI_Boolean.h
36     GeomAlgoAPI_ThroughAll.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_STEPImportXCAF.h
49     GeomAlgoAPI_IGESImport.h
50     GeomAlgoAPI_BREPExport.h
51     GeomAlgoAPI_STEPExport.h
52     GeomAlgoAPI_STLExport.h
53     GeomAlgoAPI_STLImport.h
54     GeomAlgoAPI_IGESExport.h
55     GeomAlgoAPI_Transform.h
56     GeomAlgoAPI_ShapeTools.h
57     GeomAlgoAPI_Partition.h
58     GeomAlgoAPI_PaveFiller.h
59     GeomAlgoAPI_Intersection.h
60     GeomAlgoAPI_Pipe.h
61     GeomAlgoAPI_WireBuilder.h
62     GeomAlgoAPI_Sewing.h
63     GeomAlgoAPI_ShapeBuilder.h
64     GeomAlgoAPI_ShapeAPI.h
65     GeomAlgoAPI_Exception.h
66     GeomAlgoAPI_Box.h
67     GeomAlgoAPI_Cone.h
68     GeomAlgoAPI_Cylinder.h
69     GeomAlgoAPI_Sphere.h
70     GeomAlgoAPI_Torus.h
71     GeomAlgoAPI_XAOExport.h
72     GeomAlgoAPI_XAOImport.h
73     GeomAlgoAPI_Copy.h
74     GeomAlgoAPI_ConeSegment.h
75     GeomAlgoAPI_Ellipsoid.h
76     GeomAlgoAPI_Symmetry.h
77     GeomAlgoAPI_Scale.h
78     GeomAlgoAPI_Circ2dBuilder.h
79     GeomAlgoAPI_UnifySameDomain.h
80     GeomAlgoAPI_Fillet.h
81     GeomAlgoAPI_Fillet1D.h
82     GeomAlgoAPI_SortListOfShapes.h
83     GeomAlgoAPI_Filling.h
84     GeomAlgoAPI_CurveBuilder.h
85     GeomAlgoAPI_NExplode.h
86     GeomAlgoAPI_Offset.h
87     GeomAlgoAPI_SolidClassifier.h
88     GeomAlgoAPI_MapShapesAndAncestors.h
89     GeomAlgoAPI_Projection.h
90     GeomAlgoAPI_Chamfer.h
91     GeomAlgoAPI_Defeaturing.h
92 )
93
94 SET(PROJECT_SOURCES
95     GeomAlgoAPI_Tools.cpp
96     GeomAlgoAPI_CompoundBuilder.cpp
97     GeomAlgoAPI_FaceBuilder.cpp
98     GeomAlgoAPI_EdgeBuilder.cpp
99     GeomAlgoAPI_PointBuilder.cpp
100     GeomAlgoAPI_SketchBuilder.cpp
101     GeomAlgoAPI_Prism.cpp
102     GeomAlgoAPI_Revolution.cpp
103     GeomAlgoAPI_Boolean.cpp
104     GeomAlgoAPI_ThroughAll.cpp
105     GeomAlgoAPI_Rotation.cpp
106     GeomAlgoAPI_Translation.cpp
107     GeomAlgoAPI_MakeShape.cpp
108     GeomAlgoAPI_MakeShapeCustom.cpp
109     GeomAlgoAPI_MakeShapeList.cpp
110     GeomAlgoAPI_MakeSweep.cpp
111     GeomAlgoAPI_MakeVolume.cpp
112     GeomAlgoAPI_DFLoader.cpp
113     GeomAlgoAPI_Placement.cpp
114     GeomAlgoAPI_BREPImport.cpp
115     GeomAlgoAPI_STEPImport.cpp
116     GeomAlgoAPI_STEPImportXCAF.cpp
117     GeomAlgoAPI_IGESImport.cpp
118     GeomAlgoAPI_BREPExport.cpp
119     GeomAlgoAPI_STEPExport.cpp
120     GeomAlgoAPI_STLExport.cpp
121     GeomAlgoAPI_STLImport.cpp
122     GeomAlgoAPI_IGESExport.cpp
123     GeomAlgoAPI_Transform.cpp
124     GeomAlgoAPI_ShapeTools.cpp
125     GeomAlgoAPI_Partition.cpp
126     GeomAlgoAPI_PaveFiller.cpp
127     GeomAlgoAPI_Intersection.cpp
128     GeomAlgoAPI_Pipe.cpp
129     GeomAlgoAPI_WireBuilder.cpp
130     GeomAlgoAPI_Sewing.cpp
131     GeomAlgoAPI_ShapeBuilder.cpp
132     GeomAlgoAPI_ShapeAPI.cpp
133     GeomAlgoAPI_Exception.cpp
134     GeomAlgoAPI_Box.cpp
135     GeomAlgoAPI_Cone.cpp
136     GeomAlgoAPI_Cylinder.cpp
137     GeomAlgoAPI_Sphere.cpp
138     GeomAlgoAPI_Torus.cpp
139     GeomAlgoAPI_XAOExport.cpp
140     GeomAlgoAPI_XAOImport.cpp
141     GeomAlgoAPI_Copy.cpp
142     GeomAlgoAPI_ConeSegment.cpp
143     GeomAlgoAPI_Ellipsoid.cpp
144     GeomAlgoAPI_Symmetry.cpp
145     GeomAlgoAPI_Scale.cpp
146     GeomAlgoAPI_Circ2dBuilder.cpp
147     GeomAlgoAPI_UnifySameDomain.cpp
148     GeomAlgoAPI_Fillet.cpp
149     GeomAlgoAPI_Fillet1D.cpp
150     GeomAlgoAPI_SortListOfShapes.cpp
151     GeomAlgoAPI_Filling.cpp
152     GeomAlgoAPI_CurveBuilder.cpp
153     GeomAlgoAPI_NExplode.cpp
154     GeomAlgoAPI_Offset.cpp
155     GeomAlgoAPI_SolidClassifier.cpp
156     GeomAlgoAPI_MapShapesAndAncestors.cpp
157     GeomAlgoAPI_Projection.cpp
158     GeomAlgoAPI_Chamfer.cpp
159     GeomAlgoAPI_Defeaturing.cpp
160 )
161
162 SET(PROJECT_LIBRARIES
163     GeomAPI
164     GeomAlgoImpl
165     ModelAPI
166     XAOShaper
167     ${OpenCASCADE_DataExchange_LIBRARIES}
168     ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
169     ${OpenCASCADE_ApplicationFramework_LIBRARIES}
170 )
171
172 ADD_DEFINITIONS(-DGEOMALGOAPI_EXPORTS ${OpenCASCADE_DEFINITIONS})
173 ADD_LIBRARY(GeomAlgoAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
174
175 SET(CMAKE_SWIG_FLAGS -w325,321,362,383,302)
176
177 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES CPLUSPLUS ON)
178 SET_SOURCE_FILES_PROPERTIES(GeomAlgoAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
179
180 INCLUDE_DIRECTORIES(
181   ../GeomAPI
182   ../GeomAlgoImpl
183   ../ModelAPI
184   ../XAO
185   ${PROJECT_SOURCE_DIR}/src/Locale
186   ${OpenCASCADE_INCLUDE_DIR}
187 )
188
189 TARGET_LINK_LIBRARIES(GeomAlgoAPI ${PROJECT_LIBRARIES})
190
191 SET(SWIG_SCRIPTS
192   ${CMAKE_CURRENT_BINARY_DIR}/GeomAlgoAPI.py
193 )
194
195 SET(SWIG_LINK_LIBRARIES
196   GeomAPI
197   GeomAlgoAPI
198   GeomAlgoImpl
199   ${PYTHON_LIBRARIES}
200 )
201
202 IF(${CMAKE_VERSION} VERSION_GREATER "3.8.0")
203   SWIG_ADD_LIBRARY(GeomAlgoAPI LANGUAGE python SOURCES GeomAlgoAPI.i ${PROJECT_HEADERS})
204 ELSE()
205   SWIG_ADD_MODULE(GeomAlgoAPI python GeomAlgoAPI.i ${PROJECT_HEADERS})
206 ENDIF()
207 SWIG_LINK_LIBRARIES(GeomAlgoAPI ${SWIG_LINK_LIBRARIES})
208
209 IF(WIN32)
210   SET_TARGET_PROPERTIES(_GeomAlgoAPI PROPERTIES DEBUG_OUTPUT_NAME _GeomAlgoAPI_d)
211 ENDIF(WIN32)
212
213 INSTALL(TARGETS _GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_SWIG})
214 INSTALL(TARGETS GeomAlgoAPI DESTINATION ${SHAPER_INSTALL_BIN})
215 INSTALL(FILES ${SWIG_SCRIPTS} DESTINATION ${SHAPER_INSTALL_SWIG})
216