smesh/src/SMESHUtils/CMakeLists.txt

91 lines
2.2 KiB
CMake
Raw Normal View History

2015-02-13 13:38:35 +05:00
# Copyright (C) 2012-2015 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
2014-02-20 18:25:37 +06:00
# 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(
${KERNEL_INCLUDE_DIRS}
${CAS_INCLUDE_DIRS}
${VTK_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
${PROJECT_SOURCE_DIR}/src/SMDS
)
# additional preprocessor / compiler flags
ADD_DEFINITIONS(
${CAS_DEFINITIONS}
${BOOST_DEFINITIONS}
)
# libraries to link to
SET(_link_LIBRARIES
${CAS_TKShHealing}
${CAS_TKPrim}
2015-03-04 18:56:54 +05:00
${CAS_TKernel}
${CAS_TKBRep}
${CAS_TKG2d}
${CAS_TKG3d}
${CAS_TKGeomBase}
${CAS_TKGeomAlgo}
2015-06-17 20:16:00 +05:00
${CAS_TKTopAlgo}
2014-04-01 15:28:48 +06:00
${Boost_LIBRARIES}
2015-02-24 13:24:33 +05:00
SMDS
)
# --- headers ---
# header files / no moc processing
SET(SMESHUtils_HEADERS
SMESH_Block.hxx
SMESH_TypeDefs.hxx
SMESH_Tree.hxx
SMESH_Octree.hxx
SMESH_Quadtree.hxx
SMESH_OctreeNode.hxx
SMESH_Comment.hxx
SMESH_ComputeError.hxx
SMESH_File.hxx
SMESH_Utils.hxx
SMESH_TryCatch.hxx
SMESH_MeshAlgos.hxx
SMESH_MAT2d.hxx
)
# --- sources ---
# sources / static
SET(SMESHUtils_SOURCES
SMESH_Block.cxx
SMESH_Quadtree.cxx
SMESH_Octree.cxx
SMESH_OctreeNode.cxx
SMESH_TryCatch.cxx
SMESH_File.cxx
SMESH_MeshAlgos.cxx
SMESH_MAT2d.cxx
)
# --- rules ---
ADD_LIBRARY(SMESHUtils ${SMESHUtils_SOURCES})
TARGET_LINK_LIBRARIES(SMESHUtils ${_link_LIBRARIES} )
INSTALL(TARGETS SMESHUtils EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
INSTALL(FILES ${SMESHUtils_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})