1. create a new build-directory 
   (it is always better not to build in the
   src)
   mkdir <builddir>
2. cd <builddir>
3. ccmake ..
4. adapt CMAKE_INSTALL_PREFIX to desired installation directory
5. If you want to build the tests: enable BUILD_TESTS
6. If you want to build the python bindings: enable PYTHON_BINDING, you need sip 4.5 for this to work
7  Generate (press g)
8. make
9. To execute the tests: make check
10. To create to API-documentation: make docs (in <builddir>)
11. To install: make install [DESTDIR=...]
12.To uninstall: make uninstall
 