# 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 # IF(SALOME_BUILD_GUI) INCLUDE(${QT_USE_FILE}) ENDIF(SALOME_BUILD_GUI) # --- options --- # additional include directories INCLUDE_DIRECTORIES( ${QT_INCLUDE_DIRS} ${PTHREAD_INCLUDE_DIR} ${CAS_INCLUDE_DIRS} ${KERNEL_INCLUDE_DIRS} ${GUI_INCLUDE_DIRS} ${GEOM_INCLUDE_DIRS} ) # additional preprocessor / compiler flags ADD_DEFINITIONS( -DCURVECREATOR_EXPORTS ${CAS_DEFINITIONS} ${QT_DEFINITIONS} ) # libraries to link to SET(_link_LIBRARIES ${GEOM_GEOMUtils} ) IF(SALOME_BUILD_GUI) LIST(APPEND _link_LIBRARIES ${GUI_qtx} ${GUI_suit} ${GUI_OCCViewer} ) ENDIF(SALOME_BUILD_GUI) # --- headers --- IF(SALOME_BUILD_GUI) # header files / to be processed by moc SET(_moc_HEADERS CurveCreator_NewSectionDlg.h CurveCreator_TableView.h CurveCreator_TreeView.h # CurveCreator_UndoOptsDlg.h CurveCreator_Widget.h OCCViewer_ViewWidget.h ) ENDIF(SALOME_BUILD_GUI) # header files / no processing SET(_other_HEADERS CurveCreator.hxx CurveCreator_Displayer.h CurveCreator_Curve.hxx CurveCreator_Diff.hxx CurveCreator_ICurve.hxx CurveCreator_Macro.hxx CurveCreator_Operation.hxx CurveCreator_Section.hxx CurveCreator_Utils.h CurveCreator_PosPoint.hxx ) # header files / to install SET(HYDROCurveCreator_HEADERS ${_moc_HEADERS} ${_other_HEADERS}) # --- sources --- IF(SALOME_BUILD_GUI) # sources / moc wrappings QT4_WRAP_CPP(_moc_SOURCES ${_moc_HEADERS}) ENDIF(SALOME_BUILD_GUI) # sources / static SET(_other_SOURCES CurveCreator_Displayer.cxx CurveCreator_Curve.cxx CurveCreator_Diff.cxx CurveCreator_Operation.cxx CurveCreator_Utils.cxx ) IF(SALOME_BUILD_GUI) LIST(APPEND _other_SOURCES CurveCreator_NewSectionDlg.cxx CurveCreator_TableView.cxx CurveCreator_TreeView.cxx # CurveCreator_UndoOptsDlg.cxx CurveCreator_Widget.cxx OCCViewer_ViewWidget.cxx ) ENDIF(SALOME_BUILD_GUI) # sources / to compile SET(HYDROCurveCreator_SOURCES ${_other_SOURCES} ${_moc_SOURCES}) # --- rules --- ADD_LIBRARY(HYDROCurveCreator ${HYDROCurveCreator_SOURCES} ${HYDROCurveCreator_HEADERS}) TARGET_LINK_LIBRARIES(HYDROCurveCreator ${_link_LIBRARIES} ${CAS_TKGeomAlgo}) INSTALL(TARGETS HYDROCurveCreator EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS}) INSTALL(FILES ${HYDROCurveCreator_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})