What do I need to do to include boost :: thread in my project? I copied the entire stream folder to my work path (I want it to be able to run on multiple computers), and I get
Fatal error C1083: Cannot open file: 'boost / thread / detail / platform.hpp': No such file or directory
From the line #include "thread/thread.hpp"
What gives?
edit Even if I just link to the boost folder where the precompiled binary is installed and I use #include <boost/thread/thread.hpp> , I get
fatal error LNK1104: cannot open file 'Libboost_thread-vc90-mt-1_41.lib
c ++ multithreading boost
Chris
source share