dust3d/thirdparty/cgal/CGAL-5.1/cmake/modules/UseTBB.cmake

9 lines
409 B
CMake
Raw Normal View History

# 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 )
2020-10-13 12:44:25 +00:00
message(DEPRECATION "This file UseTBB.cmake is deprecated, and the imported target `CGAL::TBB_support` from CGAL_TBB_support.cmake should be used instead.")