Static linking the boost library

I have written a program that uses boost in visual studio 2012. The only boost library I used is filesystem

by doing.
1)Properties->Linker->General
and adding the path or the .lib to the additional dependencies. The libraries, link at compile time.
However when i move the exe to a different computer, it doesn't work. Therefore the libraries were dynamically not statically linked. So my question is how do I statically link the filesystem library, so that i can include boost/filesystem.hpp in visual studio 2012?
Properties->C++->Code Generation.
Change runtime from MD (release) or MDd (debug) to MT or MTd.
Topic archived. No new replies allowed.