wjakob / tbb

Intel TBB with CMake build system
Apache License 2.0
369 stars 161 forks source link

Add config file #64

Closed jschueller closed 4 years ago

jschueller commented 4 years ago

Allows to detect tbb easily:

find_package(TBB CONFIG REQUIRED)
add_executable (hello main.cxx)
target_link_libraries(hello TBB::tbb)

Closes #52, #53, #55