INSTALL 859 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Simple install procedure
  2. ========================
  3. $ tar xfz libufodecode-0.x.y.tar.xfz
  4. $ cd libufodecode-0.x.y
  5. $ mkdir build
  6. $ cd build/
  7. $ cmake ..
  8. $ make
  9. [ Become root if necessary ]
  10. $ make install
  11. Requirements
  12. ============
  13. libuca requires CMake and a standard C Compiler. Information about CMake can be
  14. found at:
  15. http://www.cmake.org
  16. Building the Library
  17. ====================
  18. On Linux, libufodecode uses the CMake build system. The normal procedure to
  19. build this library is to create an empty build directory:
  20. $ mkdir build/ && cd build
  21. configure the project using CMake:
  22. $ cmake ../
  23. and compiling the library with make:
  24. $ make
  25. $ make install
  26. Options to the build process can be passed to the system when configuring:
  27. $ cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
  28. or via configuration tools like `ccmake`.