mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-01 04:10:34 +05:00
170 lines
4.7 KiB
CMake
170 lines
4.7 KiB
CMake
# Copyright (C) 2012-2020 CEA/DEN, EDF R&D, OPEN CASCADE
|
|
#
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
#
|
|
|
|
# --- options ---
|
|
|
|
# additional include directories
|
|
INCLUDE_DIRECTORIES(
|
|
${OpenCASCADE_INCLUDE_DIR}
|
|
${KERNEL_INCLUDE_DIRS}
|
|
${PROJECT_SOURCE_DIR}/src/GEOMUtils
|
|
${PROJECT_SOURCE_DIR}/src/GEOM
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
# additional preprocessor / compiler flags
|
|
ADD_DEFINITIONS(
|
|
${OpenCASCADE_DEFINITIONS}
|
|
)
|
|
|
|
# libraries to link to
|
|
SET(_link_LIBRARIES
|
|
${OpenCASCADE_FoundationClasses_LIBRARIES}
|
|
${OpenCASCADE_ModelingAlgorithms_LIBRARIES}
|
|
GEOMbasic GEOMUtils
|
|
${KERNEL_SALOMELocalTrace}
|
|
)
|
|
|
|
# --- headers ---
|
|
|
|
SET(GEOMAlgo_HEADERS
|
|
GEOMAlgo_Algo.hxx
|
|
GEOMAlgo_AlgoTools.hxx
|
|
GEOMAlgo_BndSphere.hxx
|
|
GEOMAlgo_BndSphereTree.hxx
|
|
GEOMAlgo_BoxBndTree.hxx
|
|
GEOMAlgo_Clsf.hxx
|
|
GEOMAlgo_ClsfBox.hxx
|
|
GEOMAlgo_ClsfQuad.hxx
|
|
GEOMAlgo_ClsfSolid.hxx
|
|
GEOMAlgo_ClsfSurf.hxx
|
|
GEOMAlgo_CoupleOfShapes.hxx
|
|
GEOMAlgo_DataMapIteratorOfDataMapOfPassKeyInteger.hxx
|
|
GEOMAlgo_DataMapOfPassKeyInteger.hxx
|
|
GEOMAlgo_DataMapOfShapeMapOfShape.hxx
|
|
GEOMAlgo_DataMapOfShapePnt.hxx
|
|
GEOMAlgo_Extractor.hxx
|
|
GEOMAlgo_FinderShapeOn.hxx
|
|
GEOMAlgo_FinderShapeOn1.hxx
|
|
GEOMAlgo_FinderShapeOn2.hxx
|
|
GEOMAlgo_FinderShapeOnQuad.hxx
|
|
GEOMAlgo_GetInPlace.hxx
|
|
GEOMAlgo_GetInPlaceAPI.hxx
|
|
GEOMAlgo_GlueAnalyser.hxx
|
|
GEOMAlgo_GlueDetector.hxx
|
|
GEOMAlgo_Gluer.hxx
|
|
GEOMAlgo_Gluer2.hxx
|
|
GEOMAlgo_GluerAlgo.hxx
|
|
GEOMAlgo_HAlgo.hxx
|
|
GEOMAlgo_IndexedDataMapOfIntegerShape.hxx
|
|
GEOMAlgo_IndexedDataMapOfPassKeyShapeListOfShape.hxx
|
|
GEOMAlgo_IndexedDataMapOfShapeBndSphere.hxx
|
|
GEOMAlgo_IndexedDataMapOfShapeBox.hxx
|
|
GEOMAlgo_IndexedDataMapOfShapeIndexedMapOfShape.hxx
|
|
GEOMAlgo_IndexedDataMapOfShapeShapeInfo.hxx
|
|
GEOMAlgo_IndexedDataMapOfShapeState.hxx
|
|
GEOMAlgo_KindOfBounds.hxx
|
|
GEOMAlgo_KindOfClosed.hxx
|
|
GEOMAlgo_KindOfDef.hxx
|
|
GEOMAlgo_KindOfName.hxx
|
|
GEOMAlgo_KindOfShape.hxx
|
|
GEOMAlgo_ListIteratorOfListOfCoupleOfShapes.hxx
|
|
GEOMAlgo_ListIteratorOfListOfPnt.hxx
|
|
GEOMAlgo_ListOfCoupleOfShapes.hxx
|
|
GEOMAlgo_ListOfPnt.hxx
|
|
GEOMAlgo_PassKey.hxx
|
|
GEOMAlgo_PassKeyMapHasher.hxx
|
|
GEOMAlgo_PassKeyShape.hxx
|
|
GEOMAlgo_PassKeyShapeMapHasher.hxx
|
|
GEOMAlgo_RemoverWebs.hxx
|
|
GEOMAlgo_ShapeAlgo.hxx
|
|
GEOMAlgo_ShapeInfo.hxx
|
|
GEOMAlgo_ShapeInfoFiller.hxx
|
|
GEOMAlgo_ShapeSolid.hxx
|
|
GEOMAlgo_ShellSolid.hxx
|
|
GEOMAlgo_SolidSolid.hxx
|
|
GEOMAlgo_Splitter.hxx
|
|
GEOMAlgo_State.hxx
|
|
GEOMAlgo_StateCollector.hxx
|
|
GEOMAlgo_SurfaceTools.hxx
|
|
GEOMAlgo_VertexSolid.hxx
|
|
GEOMAlgo_WireSolid.hxx
|
|
)
|
|
|
|
# --- sources ---
|
|
|
|
SET(GEOMAlgo_SOURCES
|
|
GEOMAlgo_Algo.cxx
|
|
GEOMAlgo_AlgoTools.cxx
|
|
GEOMAlgo_AlgoTools_1.cxx
|
|
GEOMAlgo_BndSphere.cxx
|
|
GEOMAlgo_BndSphereTree.cxx
|
|
GEOMAlgo_BoxBndTree.cxx
|
|
GEOMAlgo_BuilderShape.cxx
|
|
GEOMAlgo_Clsf.cxx
|
|
GEOMAlgo_ClsfBox.cxx
|
|
GEOMAlgo_ClsfQuad.cxx
|
|
GEOMAlgo_ClsfSolid.cxx
|
|
GEOMAlgo_ClsfSurf.cxx
|
|
GEOMAlgo_CoupleOfShapes.cxx
|
|
GEOMAlgo_FinderShapeOn2.cxx
|
|
GEOMAlgo_Extractor.cxx
|
|
GEOMAlgo_GetInPlace.cxx
|
|
GEOMAlgo_GetInPlace_1.cxx
|
|
GEOMAlgo_GetInPlace_2.cxx
|
|
GEOMAlgo_GetInPlace_3.cxx
|
|
GEOMAlgo_GetInPlaceAPI.cxx
|
|
GEOMAlgo_GlueAnalyser.cxx
|
|
GEOMAlgo_GlueDetector.cxx
|
|
GEOMAlgo_Gluer.cxx
|
|
GEOMAlgo_Gluer2.cxx
|
|
GEOMAlgo_Gluer2_1.cxx
|
|
GEOMAlgo_Gluer2_2.cxx
|
|
GEOMAlgo_Gluer2_3.cxx
|
|
GEOMAlgo_GluerAlgo.cxx
|
|
GEOMAlgo_HAlgo.cxx
|
|
GEOMAlgo_PassKey.cxx
|
|
GEOMAlgo_PassKeyMapHasher.cxx
|
|
GEOMAlgo_PassKeyShape.cxx
|
|
GEOMAlgo_PassKeyShapeMapHasher.cxx
|
|
GEOMAlgo_RemoverWebs.cxx
|
|
GEOMAlgo_ShapeAlgo.cxx
|
|
GEOMAlgo_ShapeInfo.cxx
|
|
GEOMAlgo_ShapeInfoFiller.cxx
|
|
GEOMAlgo_ShapeInfoFiller_1.cxx
|
|
GEOMAlgo_ShapeSolid.cxx
|
|
GEOMAlgo_ShellSolid.cxx
|
|
GEOMAlgo_SolidSolid.cxx
|
|
GEOMAlgo_Splitter.cxx
|
|
GEOMAlgo_StateCollector.cxx
|
|
GEOMAlgo_SurfaceTools.cxx
|
|
GEOMAlgo_VertexSolid.cxx
|
|
GEOMAlgo_WireSolid.cxx
|
|
)
|
|
|
|
# --- rules ---
|
|
|
|
ADD_LIBRARY(GEOMAlgo ${GEOMAlgo_SOURCES})
|
|
TARGET_LINK_LIBRARIES(GEOMAlgo ${_link_LIBRARIES})
|
|
INSTALL(TARGETS GEOMAlgo EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
|
|
|
|
INSTALL(FILES ${GEOMAlgo_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
|
|
|
|
|