naspro
view naspro-core/INSTALL @ 178:7169a8909d53
Added Permafrost + small changes
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Sun May 02 14:19:58 2010 +0300 (2010-05-02) |
| parents | 4f7243a606b1 |
| children |
line source
1 Build and installation instructions
2 ===================================
4 Build-time requirements
5 -----------------------
7 * CMake >= 2.8.0 (http://www.cmake.org)
8 * pkg-config (http://pkg-config.freedesktop.org/wiki/)
9 * LV2 core (http://lv2plug.in)
10 * Some C compiler (only tested with gcc)
12 Runtime requirements
13 --------------------
15 A POSIX-compliant OS.
17 Building
18 --------
20 To configure the package use:
22 $ cmake .
24 or, if building in some other directory:
26 $ cmake <top-level sources directory>
28 You can specify installation directories like this:
30 $ cmake -DVAR1=VALUE1 -DVAR2=VALUE2 ...
32 If VALUE is a relative path, it is considered as relative to the prefix
33 directory (CMAKE_INSTALL_PREFIX).
35 The build system understands the following variables VARx:
37 * CMAKE_INSTALL_PREFIX Installation prefix (the default value is determined
38 by CMake)
39 * LIBDIR_INSTALL Where to put library files (the default is lib)
40 * INCLUDEDIR_INSTALL Where to put header files (the default is include)
41 * PKGCONFIGDIR_INSTALL Where to put pkg-config files
42 (the default is LIBDIR_INSTALL/pkgconfig)
44 Then, build with:
46 $ make
48 And install with:
50 $ make install
52 The generated Makefile supports DESTDIR.
