diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2012-07-18 16:43:59 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2012-07-18 16:43:59 +0200 |
commit | dec2d75dc6b6f1db30042a5b39a12263ababfb87 (patch) | |
tree | 8d11acf576d1910c4928c0abf4e721b646bcceb2 /INSTALL | |
parent | 62b7634a79c0c1732272ef58d530ca97dadcc153 (diff) | |
download | ufodecode-dec2d75dc6b6f1db30042a5b39a12263ababfb87.tar.gz ufodecode-dec2d75dc6b6f1db30042a5b39a12263ababfb87.tar.bz2 ufodecode-dec2d75dc6b6f1db30042a5b39a12263ababfb87.tar.xz ufodecode-dec2d75dc6b6f1db30042a5b39a12263ababfb87.zip |
Add INSTALL and README
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 45 |
1 files changed, 45 insertions, 0 deletions
@@ -0,0 +1,45 @@ +Simple install procedure +======================== + + $ tar xfz libufodecode-0.x.y.tar.xfz + $ cd libufodecode-0.x.y + $ mkdir build + $ cd build/ + $ cmake .. + $ make + + [ Become root if necessary ] + $ make install + + +Requirements +============ + +libuca requires CMake and a standard C Compiler. Information about CMake can be +found at: + + http://www.cmake.org + + +Building the Library +==================== + +On Linux, libufodecode uses the CMake build system. The normal procedure to +build this library is to create an empty build directory: + + $ mkdir build/ && cd build + +configure the project using CMake: + + $ cmake ../ + +and compiling the library with make: + + $ make + $ make install + +Options to the build process can be passed to the system when configuring: + + $ cmake ../ -DCMAKE_INSTALL_PREFIX=/usr + +or via configuration tools like `ccmake`. |