Salome HOME
Fix for #18930 [CEA][Windows] Compile ADAO on Windows: add the check that SalomeSetup...
[tools/configuration.git] / cmake / FindSalomeTBB.cmake
1 # Copyright (C) 2013-2019  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   MESSAGE(FATAL_ERROR "Can't find tbb installation!")
34 ENDIF()
35
36 IF(TBB_FOUND) 
37   IF(TBB_INCLUDE_DIRS AND TBB_LIBRARIES)
38     # No config mode 
39     SALOME_ACCUMULATE_HEADERS(TBB_INCLUDE_DIRS)
40     SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${TBB_LIBRARIES})
41   ELSEIF(TBB_IMPORTED_TARGETS)
42     #Config mode
43     LIST(GET TBB_IMPORTED_TARGETS 0 _first_tbb_target)
44
45     # 1. Get TBB libraries dir
46     GET_TARGET_PROPERTY(_tbb_f_lib ${_first_tbb_target} IMPORTED_LOCATION_RELASE)
47     IF(NOT ${_tbb_f_lib})
48       GET_TARGET_PROPERTY(_tbb_f_lib ${_first_tbb_target} IMPORTED_LOCATION_DEBUG)    
49     ENDIF()
50     GET_FILENAME_COMPONENT(_tbb_lib ${_tbb_f_lib} DIRECTORY)
51     GET_FILENAME_COMPONENT(_tbb_lib ${_tbb_lib} ABSOLUTE)
52
53     # 2. Get TBB includes dir
54     GET_TARGET_PROPERTY(_tbb_inc ${_first_tbb_target} INTERFACE_INCLUDE_DIRECTORIES)
55     GET_FILENAME_COMPONENT(_tbb_inc ${_tbb_inc} ABSOLUTE)
56
57     SALOME_ACCUMULATE_HEADERS(_tbb_inc)
58     SALOME_ACCUMULATE_ENVIRONMENT(LD_LIBRARY_PATH ${_tbb_lib})
59   ENDIF()
60 ENDIF()