tags:

views:

734

answers:

1

I tried to use boost library in 64 bit mode of VS2008 but I'm getting "header file not found" errors.
is it any possible to use boost library under 64 bit mode of VS2008?
it worked fine in 32 bit mode. that's why I'm suspicuous bout 64 but ;(

Or anybody have good link to show setting up 64 bit mode to use boost?
thanks

+2  A: 

Boost works fine with VS2008. Are you sure you have your include paths set up correctly?

I usually a reference to the boost libraries to the Options|Projects and Solutions|VC++ Directories settings. Make sure you set the "Include Files" setting for both win32 and x64.

Most of the libraries are header only and it doesn't matter if you're building 32-bit or 64-bit.

Ferruccio
thank you. I omitted the include directory option. :)
Jace Jung