mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-05-09 12:04:54 +00:00

* Add onetbb/2022.0.0 support * onetbb: refactor test package * Add patch for mising tbb namespace Signed-off-by: Uilian Ries <uilianries@gmail.com> --------- Signed-off-by: Uilian Ries <uilianries@gmail.com> Co-authored-by: Luis Caro Campos <3535649+jcar87@users.noreply.github.com> Co-authored-by: Uilian Ries <uilianries@gmail.com>
9 lines
240 B
C++
9 lines
240 B
C++
#include <tbb/tbb.h>
|
|
#include <iostream>
|
|
|
|
int main(){
|
|
std::cout << "tbb runtime version: " << TBB_runtime_version() << "\n";
|
|
std::cout << "tbb runtime interface version: " << TBB_runtime_interface_version() << "\n";
|
|
return 0;
|
|
}
|