Build and installation instructions
===================================

Build-time requirements
-----------------------

* CMake >= 2.8.0 (http://www.cmake.org)
* pkg-config (http://pkg-config.freedesktop.org/wiki/)
* LV2 core (http://lv2plug.in)
* Some C compiler (only tested with gcc)

Runtime requirements
--------------------

A POSIX-compliant OS.

Building
--------

To configure the package use:

 $ cmake .

or, if building in some other directory:

 $ cmake <top-level sources directory>

You can specify installation directories like this:

 $ cmake -DVAR1=VALUE1 -DVAR2=VALUE2 ...

If VALUE is a relative path, it is considered as relative to the prefix
directory (CMAKE_INSTALL_PREFIX).

The build system understands the following variables VARx:

 * CMAKE_INSTALL_PREFIX   Installation prefix (the default value is determined
                                               by CMake)
 * LIBDIR_INSTALL         Where to put library files (the default is lib)
 * INCLUDEDIR_INSTALL     Where to put header files (the default is include)
 * PKGCONFIGDIR_INSTALL   Where to put pkg-config files
                            (the default is LIBDIR_INSTALL/pkgconfig)

Then, build with:

 $ make

And install with:

 $ make install

The generated Makefile supports DESTDIR.
