naspro

view permafrost/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
children
line source
1 Build and installation instructions
2 ===================================
4 Build-time requirements
5 -----------------------
7 * CMake >= 2.8.0 (http://www.cmake.org)
8 * Some C compiler (only tested with gcc)
10 Runtime requirements
11 --------------------
13 A standard C library implementation (including math functions).
15 Building
16 --------
18 To configure the package use:
20 $ cmake .
22 or, if building in some other directory:
24 $ cmake <top-level sources directory>
26 You can specify installation directories like this:
28 $ cmake -DVAR1=VALUE1 -DVAR2=VALUE2 ...
30 If VALUE is a relative path, it is considered as relative to the prefix
31 directory (CMAKE_INSTALL_PREFIX).
33 The build system understands the following variables VARx:
35 * CMAKE_INSTALL_PREFIX Installation prefix (the default value is determined
36 by CMake)
37 * BINDIR_INSTALL Where to put program executables (the default is bin)
38 * DATADIR_INSTALL Where to put shared data files (the default is
39 share/permafrost)
41 Then, build with:
43 $ make
45 And install with:
47 $ make install
49 The generated Makefile supports DESTDIR.