Salome HOME
bos #18709: Modify GMSH headers detection procedure
[tools/configuration.git] / cmake / FindSalomeTBB.cmake
1 # Copyright (C) 2013-2021  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 IF(NOT DEFINED MACHINE_IS_64)
21   MESSAGE(FATAL_ERROR "Developer error -> SalomeSetupPlatform macros should be inclided before find_package(SalomeTBB) !")
22 ENDIF()
23
24 SALOME_FIND_PACKAGE_AND_DETECT_CONFLICTS(TBB TBB_INCLUDE_DIRS 1)
25
26 IF(TBB_INCLUDE_DIRS AND TBB_LIBRARIES)
27   # No config mode 
28   MARK_AS_ADVANCED(TBB_INCLUDE_DIRS TBB_LIBRARIES)
29 ELSEIF(TBB_IMPORTED_TARGETS)
30   #Config mode
31   SET(TBB_LIBRARIES ${TBB_IMPORTED_TARGETS})
32 ELSE()
33   IF(TARGET TBB::tbb)
34     LIST(APPEND TBB_LIBRARIES TBB::tbb)
35   ENDIF()
36   IF(TARGET TBB::tbbmalloc)
37     LIST(APPEND TBB_LIBRARIES TBB::tbbmalloc)
38   ENDIF()
39   IF(NOT TBB_LIBRARIES)
40     MESSAGE(FATAL_ERROR "Can't find tbb installation!")
41   ENDIF()
42 ENDIF()
43
44 IF(TBB_FOUND) 
45   IF(TBB_INCLUDE_DIRS AND TBB_LIBRARIES)
46     # No config mode 
47     SALOME_ACCUMULATE_HEADERS(TBB_INCLUDE_DIRS)
48     SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${TBB_LIBRARIES})
49   ELSEIF(TBB_IMPORTED_TARGETS)
50     #Config mode
51     LIST(GET TBB_IMPORTED_TARGETS 0 _first_tbb_target)
52
53     # 1. Get TBB libraries dir
54     GET_TARGET_PROPERTY(_tbb_f_lib ${_first_tbb_target} IMPORTED_LOCATION_RELASE)
55     IF(NOT ${_tbb_f_lib})
56       GET_TARGET_PROPERTY(_tbb_f_lib ${_first_tbb_target} IMPORTED_LOCATION_DEBUG)    
57     ENDIF()
58     GET_FILENAME_COMPONENT(_tbb_lib ${_tbb_f_lib} DIRECTORY)
59     GET_FILENAME_COMPONENT(_tbb_lib ${_tbb_lib} ABSOLUTE)
60
61     # 2. Get TBB includes dir
62     GET_TARGET_PROPERTY(_tbb_inc ${_first_tbb_target} INTERFACE_INCLUDE_DIRECTORIES)
63     GET_FILENAME_COMPONENT(_tbb_inc ${_tbb_inc} ABSOLUTE)
64
65     SALOME_ACCUMULATE_HEADERS(_tbb_inc)
66     SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${_tbb_lib})
67   ENDIF()
68 ENDIF()