1 # Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 FIND_PACKAGE(SWIG REQUIRED)
22 INCLUDE(${SWIG_USE_FILE})
23 INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
41 GeomAPI_ShapeExplorer.h
42 GeomAPI_ShapeIterator.h
47 GeomAPI_IPresentable.h
49 GeomAPI_DataMapOfShapeMapOfShapes.h
50 GeomAPI_DataMapOfShapeShape.h
70 GeomAPI_WireExplorer.h
87 GeomAPI_ShapeExplorer.cpp
88 GeomAPI_ShapeIterator.cpp
91 GeomAPI_PlanarEdges.cpp
94 GeomAPI_DataMapOfShapeMapOfShapes.cpp
95 GeomAPI_DataMapOfShapeShape.cpp
97 GeomAPI_ICustomPrs.cpp
101 GeomAPI_IPresentable.cpp
107 GeomAPI_Ellipse2d.cpp
116 GeomAPI_WireExplorer.cpp
119 SET(PROJECT_LIBRARIES
120 ${OpenCASCADE_FoundationClasses_LIBRARIES}
121 ${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
122 ${OpenCASCADE_Visualization_LIBRARIES}
125 ADD_DEFINITIONS(-DGEOMAPI_EXPORTS ${OpenCASCADE_DEFINITIONS})
126 ADD_LIBRARY(GeomAPI SHARED ${PROJECT_SOURCES} ${PROJECT_HEADERS})
128 SET(CMAKE_SWIG_FLAGS -threads -w325,321,362,383,512)
130 SET_SOURCE_FILES_PROPERTIES(GeomAPI.i PROPERTIES CPLUSPLUS ON)
131 SET_SOURCE_FILES_PROPERTIES(GeomAPI.i PROPERTIES SWIG_DEFINITIONS "-shadow")
134 ${OpenCASCADE_INCLUDE_DIR}
137 TARGET_LINK_LIBRARIES(GeomAPI ${PROJECT_LIBRARIES})
140 ${CMAKE_CURRENT_BINARY_DIR}/GeomAPI.py
143 SET(SWIG_LINK_LIBRARIES
148 IF(${CMAKE_VERSION} VERSION_GREATER "3.8.0")
149 SWIG_ADD_LIBRARY(GeomAPI LANGUAGE python SOURCES GeomAPI.i ${PROJECT_HEADERS})
151 SWIG_ADD_MODULE(GeomAPI python GeomAPI.i ${PROJECT_HEADERS})
153 SWIG_LINK_LIBRARIES(GeomAPI ${SWIG_LINK_LIBRARIES})
156 SET_TARGET_PROPERTIES(_GeomAPI PROPERTIES DEBUG_OUTPUT_NAME _GeomAPI_d)
159 INSTALL(TARGETS _GeomAPI DESTINATION ${SHAPER_INSTALL_SWIG})
160 INSTALL(TARGETS GeomAPI DESTINATION ${SHAPER_INSTALL_BIN})
161 INSTALL(FILES ${SWIG_SCRIPTS} DESTINATION ${SHAPER_INSTALL_SWIG})