mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-15 22:40:36 +05:00
89 lines
2.7 KiB
CMake
Executable File
89 lines
2.7 KiB
CMake
Executable File
# Copyright (C) 2012-2013 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.
|
|
#
|
|
# 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(
|
|
${OMNIORB_INCLUDE_DIR}
|
|
${CAS_INCLUDE_DIRS}
|
|
${KERNEL_INCLUDE_DIRS}
|
|
${PROJECT_SOURCE_DIR}/src/GEOMImpl
|
|
${PROJECT_SOURCE_DIR}/src/GEOM
|
|
${PROJECT_SOURCE_DIR}/src/GEOMAlgo
|
|
${PROJECT_SOURCE_DIR}/src/GEOM_I
|
|
${PROJECT_SOURCE_DIR}/src/GEOMUtils
|
|
${PROJECT_BINARY_DIR}/idl
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${PROJECT_BINARY_DIR}
|
|
)
|
|
|
|
# additional preprocessor / compiler flags
|
|
ADD_DEFINITIONS(
|
|
${CAS_DEFINITIONS}
|
|
${OMNIORB_DEFINITIONS}
|
|
)
|
|
|
|
# libraries to link to
|
|
SET(_link_LIBRARIES
|
|
GEOMEngine
|
|
SalomeIDLGEOM
|
|
${KERNEL_SALOMELocalTrace}
|
|
${KERNEL_SalomeGenericObj}
|
|
${KERNEL_TOOLSDS}
|
|
${KERNEL_SalomeContainer}
|
|
${KERNEL_SalomeNS}
|
|
)
|
|
|
|
# --- headers ---
|
|
|
|
SET(AdvancedEngine_HEADERS
|
|
AdvancedEngine_Types.hxx
|
|
# AdvancedEngine_OperationsCreator.hh
|
|
# GEOM_AdvancedEngine.hxx
|
|
# GEOMImpl_IAdvancedOperations.hxx
|
|
# GEOM_IAdvancedOperations_i.hh
|
|
# #ADVANCED_INCLUDES:
|
|
# GEOMImpl_IPipeTShape.hxx GEOMImpl_PipeTShapeDriver.hxx
|
|
# GEOMImpl_IDividedDisk.hxx GEOMImpl_DividedDiskDriver.hxx
|
|
# GEOMImpl_IDividedCylinder.hxx GEOMImpl_DividedCylinderDriver.hxx
|
|
# GEOMImpl_ISmoothingSurface.hxx GEOMImpl_SmoothingSurfaceDriver.hxx
|
|
)
|
|
# --- sources ---
|
|
|
|
SET(AdvancedEngine_SOURCES
|
|
AdvancedEngine.cxx
|
|
AdvancedEngine_OperationsCreator.cc
|
|
GEOMImpl_IAdvancedOperations.cxx
|
|
GEOM_IAdvancedOperations_i.cc
|
|
# ADVANCED_SOURCES:
|
|
GEOMImpl_PipeTShapeDriver.cxx
|
|
GEOMImpl_DividedDiskDriver.cxx
|
|
#GEOMImpl_DividedCylinderDriver.cxx
|
|
GEOMImpl_SmoothingSurfaceDriver.cxx
|
|
##@@ insert new functions before this line @@ do not remove this line @@ do not remove this line @@##
|
|
)
|
|
|
|
# --- rules ---
|
|
|
|
ADD_LIBRARY(AdvancedEngine ${AdvancedEngine_SOURCES})
|
|
TARGET_LINK_LIBRARIES(AdvancedEngine ${_link_LIBRARIES})
|
|
INSTALL(TARGETS AdvancedEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
|
|
|
|
INSTALL(FILES ${AdvancedEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS}) |