X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FCASCatch%2FCMakeLists.txt;h=bcab658f5f937efa4b11723036077b140b3adb25;hb=da3d94e2700b8f44175da5a82a8bd85dc8abe8ef;hp=37aad3edb503cc0daca027e4af1b3019484bd3bf;hpb=bb8609caf7881d966fbb88dec0a7822736da93f5;p=modules%2Fgui.git diff --git a/src/CASCatch/CMakeLists.txt b/src/CASCatch/CMakeLists.txt index 37aad3edb..bcab658f5 100755 --- a/src/CASCatch/CMakeLists.txt +++ b/src/CASCatch/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2012-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2012-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. +# 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 @@ -17,23 +17,43 @@ # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com # +# --- options --- + +# additional include directories INCLUDE_DIRECTORIES( - ${PTHREAD_INCLUDE_DIRS} ${CAS_INCLUDE_DIRS} ) +# additional preprocessor / compiler flags +ADD_DEFINITIONS(${CAS_DEFINITIONS}) + +# libraries to link to +SET(_link_LIBRARIES ${CAS_KERNEL}) + +# --- headers --- + +# header files / to install +SET(CASCatch_HEADERS + CASCatch.hxx + CASCatch_CatchSignals.hxx + CASCatch_ErrorHandler.hxx + CASCatch_Failure.hxx +) + +# --- sources --- + +# sources / static SET(CASCatch_SOURCES CASCatch_CatchSignals.cxx CASCatch_ErrorHandler.cxx CASCatch_Failure.cxx ) -ADD_DEFINITIONS(${CAS_DEFINITIONS}) +# --- rules --- ADD_LIBRARY(CASCatch ${CASCatch_SOURCES}) -TARGET_LINK_LIBRARIES(CASCatch ${CAS_KERNEL}) -INSTALL(TARGETS CASCatch DESTINATION ${GUI_salomelib_LIBS}) +TARGET_LINK_LIBRARIES(CASCatch ${_link_LIBRARIES}) +INSTALL(TARGETS CASCatch EXPORT ${PROJECT_NAME}TargetGroup DESTINATION ${SALOME_INSTALL_LIBS}) -FILE(GLOB COMMON_HEADERS_HXX "${CMAKE_CURRENT_SOURCE_DIR}/*.hxx") -INSTALL(FILES ${COMMON_HEADERS_HXX} DESTINATION ${GUI_salomeinclude_HEADERS}) +INSTALL(FILES ${CASCatch_HEADERS} DESTINATION ${SALOME_INSTALL_HEADERS})