I downloaded and compiled everything fine and had it install into my code::blocks directory as the wiki recommended (C:\Program Files (x86)\CodeBlocks). I made a global variable called boost, set the base field to the installation directory and the lib field to <installation directory>\lib. I set the project build options->project name->search directories->compiler to $(#boost.include) and linker to $(#boost.lib) . In the linker settings tab I put boost_filesystem-mgw44-mt-1_49 and boost_system-mgw44-mt-1_49 (so far so good, it compiles fine), then in my program I added #include <boost/filesystem.hpp> . But now it gives me the error "error: boost/filesystem.hpp: no such file or directory".
What am I missing? I'm on windows 7 64-bit by the way.