Monthly Archives: March 2008

Boost 1.35 released

Boost 1.35 has been finally released. Highlights include: Rewritten Boost.Thread to closely match the C++0x Thread library, and with native_handle () support. Works great, I already ported a project to it, so far no problems. Includes also synchronisation primitives like … Continue reading

Posted in Programming | Tagged , | Leave a comment

Building OpenEXR 1.4.0a on Vista/VS2008

Some notes for building OpenEXR 1.4.0a on Vista with VS2008: createDLL won’t work as it tries to create files in C:\. You can easily work around this by replacing C:\\ with a path where you have write rights. FLTK include … Continue reading

Posted in Graphics | Tagged , | Leave a comment

CMake 2.6 reaches beta

CMake 2.6 has reached the beta status (mailing list post). CMake is a very nice cross-platform makefile generator — it does not build the software itself but rather relies on a platform specific tool for this. However, this is actually … Continue reading

Posted in Programming | Tagged , , | Leave a comment

C++, <windows.h>, precompiled headers and pimpl

Today we take a look at how to make best use of precompiled headers, how to avoid the <windows.h>-is-messing-up-my-symbols-syndrome and how to properly use pimpl to reduce our compile times.

Posted in Programming | Tagged , | Leave a comment