9 lines
409 B
CMake
9 lines
409 B
CMake
# This module setups the compiler for using TBB library.
|
|
# It assumes that find_package(TBB) was already called.
|
|
|
|
include_directories ( ${TBB_INCLUDE_DIRS} )
|
|
link_directories( ${TBB_LIBRARY_DIRS} )
|
|
add_definitions( -DNOMINMAX -DCGAL_LINKED_WITH_TBB )
|
|
|
|
message(DEPRECATION "This file UseTBB.cmake is deprecated, and the imported target `CGAL::TBB_support` from CGAL_TBB_support.cmake should be used instead.")
|