QtCreator and TBB under Windows
问题 I have compiled TBB from source using Mingw following the comment #5 in this post: http://software.intel.com/en-us/forums/topic/291331. That went ok. When I try to use the new TBB library in a QtCreator project, I end with this errors (ignore the warning messages): http://postimage.org/image/yrrecugix/ Here's the sample code I tried (I omit the non-tbb code): #include "tbb/task_scheduler_init.h" int main() { tbb::task_scheduler_init init; /// more things. } And here's the .pro file: TEMPLATE