
Caleb Epstein <caleb.epstein@gmail.com> wrote:
You need to set your Code Generation options to use the Multi-threaded runtime libraries:
Project > Properties > C/C++ > Code Generation > Runtime Library
Select either Multi-threaded Debug DLL or Multi-threaded DLL (and link with either the debug or non-debug Boost.Threads library as appropriate)
Visual C++ .NET 2003 toolkit does not come with the IDE. And even if it does, it still does not come with dynamic CRT. It comes only with static one. Which makes it quite unusable when someone really needs dynamic CRT. But Visual C++ .NET 2003 product (sold as "Standard" and also part of Visual Studio) actually comes with dynamic runtime, which can be selected through project settings or using compiler command line option /MD (or /MDd if one needs debug symbols) B.