在环境变量中添加msvc_19.16_cxx_64_md_debug路径
在VS库路径中加msvc_19.16_cxx_64_md_debug路径
在包含路径中加include路径
添加以下代码测试
#include
#include
using namespace std;
using namespace tbb;
int main()
{
parallel_for(0, 10, [](int num) {cout << num << ": Hello TBB!" << endl; });
getchar();
return 0;
}
1