I am currently using the tokenizer library to do some simple log file processing. I am the only person on my team currently using the boost libraries. This code I wrote was originally just a utility for myself so I was able to get away with installing boost "only" on my PC. Now others on the team want to use my utility. 

Is there a way I can share this code with them without forcing them to install boost on there PCs?  
I am only using a very very small portion of the boost library so I think it would be overkill to make everyone install boost.

Can I create a DLL or library to solve this?

If this helps...
I am running visual studio 2005. My project is not GUI based.

Thanks