I'm creating a personal C++ framework of sorts, just an interface to common stuff I use between projects. It's a static library. It makes use of a fair bit of STL and Boost. In order to use it I have to statically link to a couple Boost static libraries (.lib's).

Isn't there any way I can have my framework include the Boost dependencies (ie. compile the Boost libraries into my library)? So it doesn't require additional linking for other projects.

Thanks in advance