I am have been attempting to get a C++ project setup using boost file system library using eclipse. I followed these directions to install boost on my system. The directions whe
Just wanted to be clear on what actually worked, since it was kinda pieced together from a few answers.
./bootstrap.sh
./bjam
(this takes a while so go smoke and get a cup of coffee)boost_system
and boost_filesystem
. In the bottom section it should be for 'Library Search Path (-L)'. Here you want to put the path to the stage/lib directory inside where you extracted the boost download. It should look similar to below: Everything should compile now with out a problem, and if you need to use any other boost libraries it should be just a matter of adding it to the linker section where boost_filesystem and boost_system are. Enjoy.