From dec2d75dc6b6f1db30042a5b39a12263ababfb87 Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Wed, 18 Jul 2012 16:43:59 +0200 Subject: Add INSTALL and README --- INSTALL | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 INSTALL (limited to 'INSTALL') diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..128277f --- /dev/null +++ b/INSTALL @@ -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`. -- cgit v1.2.3