Twitter updates
- @max_mcguire @Wavesonics If you branch with SVN, then you have a problem anyway. Why not #mercurial or another DVCS with sane branching? 1 day ago
- @max_mcguire Why? Sure, there are parts which aren't great, but unless you use Spirit everywhere, Boost can be a great time saver. 1 day ago
- I just paid 70€ for 68 kib of OpenType fonts (one font, two styles), but my god, HelveticaNeueLight looks gorgeous. #ilovehelvetica 1 day ago
Development
Graphics
Calendar
February 2012 M T W T F S S « Dec 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
Category Archives: Programming
Using CMake to build a Qt application
CMake is a really great build tool, and it makes it very easy to use a lot of libraries with it. For example, CMake has a built-in module that helps you to set up a Qt project. Unfortunately, it’s a … Continue reading
Boost 1.40 released
Just saw it, Boost 1.40 has been released. Contains a few fixes for GCC 4.4 and VC 10 (great!), performance improvements and loads of other bugfixes. Asio has also got a lot of updates. The build system has been slightly … Continue reading
Updated Qt build instructions
I’ve updated my post on building Qt, adding how to skip examples and demo generation. I’ve tested it recently, and adding -nomake examples -nomake demos to configure really works. Thanks to Michael for this nice tip!
Optimising performance: Strings, maps, sets
I had to optimise the performance of my research stuff lately to get into near-interactive rates — with a few new insights how to quickly improve code which uses lots of strings and complex data structures. Note that this is … Continue reading