2016-03-18 22:10:20 +05:00
|
|
|
# Copyright (C) 2012-2016 CEA/DEN, EDF R&D, OPEN CASCADE
|
2013-10-10 18:57:42 +06:00
|
|
|
#
|
|
|
|
# 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.
|
2013-10-10 18:57:42 +06:00
|
|
|
#
|
|
|
|
# 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}
|
|
|
|
${GUI_INCLUDE_DIRS}
|
|
|
|
${MEDFILE_INCLUDE_DIRS}
|
|
|
|
${QWT_INCLUDE_DIR}
|
|
|
|
${GEOM_INCLUDE_DIRS}
|
2017-02-15 20:15:18 +05:00
|
|
|
${OpenCASCADE_INCLUDE_DIR}
|
2013-10-10 18:57:42 +06:00
|
|
|
${VTK_INCLUDE_DIRS}
|
|
|
|
${OMNIORB_INCLUDE_DIR}
|
|
|
|
${Boost_INCLUDE_DIRS}
|
|
|
|
${PROJECT_SOURCE_DIR}/src/Controls
|
|
|
|
${PROJECT_SOURCE_DIR}/src/SMDS
|
|
|
|
${PROJECT_SOURCE_DIR}/src/SMESHDS
|
|
|
|
${PROJECT_SOURCE_DIR}/src/Driver
|
|
|
|
${PROJECT_SOURCE_DIR}/src/DriverMED
|
|
|
|
${PROJECT_SOURCE_DIR}/src/SMESH
|
|
|
|
${PROJECT_SOURCE_DIR}/src/SMESHClient
|
|
|
|
${PROJECT_SOURCE_DIR}/src/SMESHUtils
|
|
|
|
${PROJECT_BINARY_DIR}/idl
|
|
|
|
)
|
|
|
|
|
|
|
|
# additional preprocessor / compiler flags
|
|
|
|
ADD_DEFINITIONS(
|
2017-02-15 20:15:18 +05:00
|
|
|
${OpenCASCADE_DEFINITIONS}
|
2013-10-10 18:57:42 +06:00
|
|
|
${BOOST_DEFINITIONS}
|
|
|
|
${OMNIORB_DEFINITIONS}
|
|
|
|
)
|
|
|
|
|
|
|
|
# libraries to link to
|
|
|
|
SET(_link_LIBRARIES
|
|
|
|
${QT_LIBRARIES}
|
|
|
|
${VTK_LIBRARIES}
|
2017-02-15 20:15:18 +05:00
|
|
|
${OpenCASCADE_KERNEL}
|
2013-10-10 18:57:42 +06:00
|
|
|
${GEOM_GEOMObject}
|
|
|
|
${GUI_SalomeApp}
|
|
|
|
${GUI_SalomeObject}
|
|
|
|
${GUI_SVTK}
|
|
|
|
${GUI_VTKViewer}
|
|
|
|
${GUI_qtx}
|
|
|
|
${GUI_suit}
|
|
|
|
${GUI_std}
|
|
|
|
SMESHClient
|
|
|
|
SMDS
|
|
|
|
SMESHControls
|
|
|
|
)
|
|
|
|
|
2015-06-11 18:21:30 +05:00
|
|
|
IF(SALOME_USE_PLOT2DVIEWER)
|
|
|
|
LIST(APPEND _link_LIBRARIES
|
|
|
|
${GUI_Plot2d}
|
|
|
|
${GUI_SPlot2d}
|
|
|
|
)
|
|
|
|
ENDIF()
|
|
|
|
|
2013-10-10 18:57:42 +06:00
|
|
|
# --- headers ---
|
|
|
|
|
|
|
|
# header files / no moc processing
|
|
|
|
SET(SMESHObject_HEADERS
|
|
|
|
SMESH_Actor.h
|
|
|
|
SMESH_Object.h
|
|
|
|
SMESH_ObjectDef.h
|
2018-09-11 16:51:38 +05:00
|
|
|
SMESH_ActorProps.h
|
2013-10-10 18:57:42 +06:00
|
|
|
SMESH_ActorUtils.h
|
|
|
|
SMESH_ActorDef.h
|
|
|
|
SMESH_DeviceActor.h
|
|
|
|
SMESH_PreviewActorsCollection.h
|
|
|
|
SMESH_ExtractGeometry.h
|
|
|
|
SMESH_FaceOrientationFilter.h
|
|
|
|
SMESH_ScalarBarActor.h
|
|
|
|
SMESH_NodeLabelActor.h
|
|
|
|
SMESH_CellLabelActor.h
|
|
|
|
SMESH_SVTKActor.h
|
|
|
|
)
|
|
|
|
|
|
|
|
# --- sources ---
|
|
|
|
|
|
|
|
# sources / static
|
|
|
|
SET(SMESHObject_SOURCES
|
|
|
|
SMESH_Object.cxx
|
|
|
|
SMESH_DeviceActor.cxx
|
|
|
|
SMESH_Actor.cxx
|
2018-09-11 16:51:38 +05:00
|
|
|
SMESH_ActorProps.cxx
|
2013-10-10 18:57:42 +06:00
|
|
|
SMESH_PreviewActorsCollection.cxx
|
|
|
|
SMESH_ExtractGeometry.cxx
|
|
|
|
SMESH_ActorUtils.cxx
|
|
|
|
SMESH_FaceOrientationFilter.cxx
|
|
|
|
SMESH_ScalarBarActor.cxx
|
|
|
|
SMESH_NodeLabelActor.cxx
|
|
|
|
SMESH_CellLabelActor.cxx
|
|
|
|
SMESH_SVTKActor.cxx
|
|
|
|
)
|
|
|
|
|
|
|
|
# --- rules ---
|
|
|
|
|
|
|
|
ADD_LIBRARY(SMESHObject ${SMESHObject_SOURCES})
|
|
|
|
TARGET_LINK_LIBRARIES(SMESHObject ${_link_LIBRARIES} )
|
|
|
|
INSTALL(TARGETS SMESHObject EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
|
|
|
|
|
|
|
|
INSTALL(FILES ${SMESHObject_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
|