X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESHDS%2FCMakeLists.txt;h=e5c153ceae634850a87c02347701cb2497501081;hb=db78f3625cd06f5ffa06fa137487b7ca2f618e8c;hp=4359252ffb1ea909af522e2632d837ffa538bd57;hpb=1bd4ba8acdfe7ab1edc96a016836e174a393d445;p=modules%2Fsmesh.git diff --git a/src/SMESHDS/CMakeLists.txt b/src/SMESHDS/CMakeLists.txt index 4359252ff..e5c153cea 100644 --- a/src/SMESHDS/CMakeLists.txt +++ b/src/SMESHDS/CMakeLists.txt @@ -1,9 +1,9 @@ -# Copyright (C) 2012-2013 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2012-2016 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 @@ -19,13 +19,18 @@ # --- options --- # additional include directories + +IF(SALOME_SMESH_USE_TBB) + SET(TBB_INCLUDES ${TBB_INCLUDE_DIRS}) +ENDIF(SALOME_SMESH_USE_TBB) + INCLUDE_DIRECTORIES( ${KERNEL_INCLUDE_DIRS} ${CAS_INCLUDE_DIRS} ${VTK_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} ${PROJECT_SOURCE_DIR}/src/SMDS - + ${TBB_INCLUDES} ) # additional preprocessor / compiler flags @@ -34,12 +39,17 @@ ADD_DEFINITIONS( ${BOOST_DEFINITIONS} ) +IF(SALOME_SMESH_USE_TBB) + SET(TBB_LIBS ${TBB_LIBRARIES}) +ENDIF(SALOME_SMESH_USE_TBB) + # libraries to link to SET(_link_LIBRARIES ${CAS_KERNEL} ${CAS_TKBRep} ${KERNEL_SALOMELocalTrace} SMDS + ${TBB_LIBS} ) # --- headers ---