DC wrote:
I downloaded 1_33_1 and it built and installed. Actually, I'm still not sure what is meant by "install" in the docs. Does something happen than copying a bunch of files to C:\Boost ?
It should have also compiled and created libs and dlls.
VC71 is having trouble resolving paths to the headers. I have:
In the project properties, Additional Include Directories: C:\Boost\include\boost-1_33_1;
In my .cpp file, I use, for example: #include
I still get:
C:\Dev\VS2003\MyProject\Engine.h(3): fatal error C1083: Cannot open include file: 'boost/date_time/gregorian/gregorian.hpp': No such file or directory
Hoping I'm overlooking something simple here. Thanks!
Can you manually navigate to: C:\Boost\include\boost-1_33_1\boost/date_time/gregorian is gregorian.hpp there? What was the command line you used to do the install? Should be: bjam "-sTOOLS=vc-7_1" install exactly with the same case. Jeff Flinn