Using cmake
===========

With cmake we create a separate directory for the build, that will have
the generated files

 $ mkdir build
 $ cd build
 $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
 $ make
 $ make install

Use the option "-DQGV_BACKEND=ON" to compile the experimental
QGraphicsView backend.

Use the option "-DSKIP_TESTS=ON" to skip the build of the tests.

Use the option "-DSKIP_PYTHON_BINDINGS=ON" if you do not want the bindings
to be automatically compiled for you.


