2017-12-01 07:37:19 +01:00
|
|
|
# - Find TBB
|
|
|
|
# Find the Thread Building Blocks library and includes
|
|
|
|
#
|
|
|
|
# TBB_INCLUDE_DIR - where to find tbb.h, etc.
|
|
|
|
# TBB_LIBRARIES - List of libraries when using TBB.
|
|
|
|
# TBB_FOUND - True if TBB found.
|
|
|
|
|
2018-05-07 23:15:29 +02:00
|
|
|
if(NOT DEFINED TBB_ROOT_DIR)
|
|
|
|
set(TBB_ROOT_DIR "$ENV{TBBROOT}")
|
|
|
|
endif()
|
|
|
|
|
2017-12-01 07:37:19 +01:00
|
|
|
find_path(TBB_INCLUDE_DIR
|
|
|
|
NAMES tbb/tbb.h
|
|
|
|
HINTS ${TBB_ROOT_DIR}/include)
|
|
|
|
|
|
|
|
find_library(TBB_LIBRARIES
|
|
|
|
NAMES tbb
|
2018-05-07 23:15:29 +02:00
|
|
|
HINTS ${TBB_ROOT_DIR}/lib ENV LIBRARY_PATH)
|
2017-12-01 07:37:19 +01:00
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(TBB DEFAULT_MSG TBB_LIBRARIES TBB_INCLUDE_DIR)
|
|
|
|
|
|
|
|
mark_as_advanced(
|
|
|
|
TBB_LIBRARIES
|
|
|
|
TBB_INCLUDE_DIR)
|