mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-28 10:20:35 +05:00
155 lines
3.7 KiB
CMake
155 lines
3.7 KiB
CMake
# Copyright (C) 2014 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
|
|
#
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
INCLUDE(UseQt4Ext)
|
|
INCLUDE(${QT_USE_FILE})
|
|
ENDIF()
|
|
|
|
# --- options ---
|
|
|
|
# additional include directories
|
|
INCLUDE_DIRECTORIES(
|
|
${CAS_INCLUDE_DIRS}
|
|
${KERNEL_INCLUDE_DIRS}
|
|
${PROJECT_BINARY_DIR}/idl
|
|
${PROJECT_SOURCE_DIR}/src/GEOMAlgo
|
|
${PROJECT_SOURCE_DIR}/src/GEOM
|
|
${PROJECT_SOURCE_DIR}/src/GEOMImpl
|
|
${PROJECT_SOURCE_DIR}/src/GEOM_I
|
|
${PROJECT_SOURCE_DIR}/src/GEOMClient
|
|
${PROJECT_SOURCE_DIR}/src/GEOMUtils
|
|
)
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
INCLUDE_DIRECTORIES(
|
|
${QT_INCLUDE_DIRS}
|
|
${GUI_INCLUDE_DIRS}
|
|
${PROJECT_SOURCE_DIR}/src/OBJECT
|
|
${PROJECT_SOURCE_DIR}/src/GEOMGUI
|
|
${PROJECT_SOURCE_DIR}/src/GEOMBase
|
|
)
|
|
ENDIF()
|
|
|
|
# additional preprocessor / compiler flags
|
|
ADD_DEFINITIONS(
|
|
${CAS_DEFINITIONS}
|
|
${OMNIORB_DEFINITIONS}
|
|
)
|
|
|
|
IF(WIN32)
|
|
ADD_DEFINITIONS(-DNOGDI)
|
|
ENDIF(WIN32)
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
ADD_DEFINITIONS(
|
|
${QT_DEFINITIONS}
|
|
)
|
|
ENDIF()
|
|
|
|
# libraries to link to
|
|
SET(_link_engine_LIBRARIES
|
|
${CAS_TKSTL}
|
|
${KERNEL_SALOMELocalTrace}
|
|
${KERNEL_OpUtil}
|
|
SalomeIDLGEOM
|
|
SalomeIDLSTLPlugin
|
|
GEOMEngine
|
|
GEOMClient
|
|
)
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
SET(_link_gui_LIBRARIES
|
|
SalomeIDLSTLPlugin
|
|
GEOMObject
|
|
GEOM
|
|
GEOMBase
|
|
)
|
|
ENDIF()
|
|
|
|
|
|
# --- headers ---
|
|
|
|
SET(STLPluginEngine_HEADERS
|
|
STLPlugin_IOperations_i.hh
|
|
STLPlugin_Engine.hxx
|
|
STLPlugin_OperationsCreator.hxx
|
|
STLPlugin_IOperations.hxx
|
|
STLPlugin_IExport.hxx
|
|
STLPlugin_IImport.hxx
|
|
STLPlugin_ImportDriver.hxx
|
|
STLPlugin_ExportDriver.hxx
|
|
STLPlugin_IECallBack.hxx
|
|
)
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
# header files / to be processed by moc
|
|
SET(_moc_HEADERS
|
|
STLPlugin_GUI.h
|
|
STLPlugin_ExportDlg.h
|
|
)
|
|
ENDIF()
|
|
|
|
# --- sources ---
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
# sources / moc wrappings
|
|
QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS})
|
|
|
|
SET(STLPluginGUI_SOURCES
|
|
STLPlugin_GUI.cxx
|
|
STLPlugin_ExportDlg.cxx
|
|
${_moc_SOURCES}
|
|
)
|
|
ENDIF()
|
|
|
|
SET(STLPluginEngine_SOURCES
|
|
STLPlugin_Engine.cxx
|
|
STLPlugin_OperationsCreator.cxx
|
|
STLPlugin_IOperations_i.cc
|
|
STLPlugin_IOperations.cxx
|
|
STLPlugin_ExportDriver.cxx
|
|
STLPlugin_ImportDriver.cxx
|
|
STLPlugin_IECallBack.cxx
|
|
)
|
|
|
|
# resource files / to be processed by lrelease
|
|
SET(STLPlugin_RESOURCES
|
|
STLPlugin_msg_en.ts
|
|
STLPlugin_msg_fr.ts
|
|
STLPlugin_msg_ja.ts
|
|
)
|
|
|
|
# --- rules ---
|
|
|
|
ADD_LIBRARY(STLPluginEngine ${STLPluginEngine_SOURCES})
|
|
TARGET_LINK_LIBRARIES(STLPluginEngine ${_link_engine_LIBRARIES})
|
|
INSTALL(TARGETS STLPluginEngine EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
|
|
|
|
IF(SALOME_BUILD_GUI)
|
|
ADD_LIBRARY(STLPluginGUI ${STLPluginGUI_SOURCES})
|
|
TARGET_LINK_LIBRARIES(STLPluginGUI ${_link_gui_LIBRARIES})
|
|
INSTALL(TARGETS STLPluginGUI EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS})
|
|
|
|
QT4_INSTALL_TS_RESOURCES("${STLPlugin_RESOURCES}" "${SALOME_GEOM_INSTALL_RES_DATA}")
|
|
ENDIF()
|
|
|
|
|
|
INSTALL(FILES ${STLPluginEngine_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})
|