 ------------------------------------------
 Genetic Algorithm File Fitter -- gaffitter
 ------------------------------------------

 http://gaffitter.sourceforge.net/          (home page)
 http://sourceforge.net/projects/gaffitter/ (project page)

 2005-2015 - Douglas A. Augusto (daaugusto@gmail.com)

 Released under the GNU General Public License (GPL) version 3 (or
 later)

    http://www.gnu.org/licenses/gpl.txt


== Installation Instructions ==

1) Prerequisites

  - POSIX-compatible Operating System (required by DiskUsage class to get
   the size of a file or directory)

  - CMake (www.cmake.org)

  - C++ compiler (recommended: GCC)


2) Building gaffitter (out-of-source building)

  $ cd gaffitter-X.Y.Z
  $ mkdir build
  $ cd build

2a) Compilation:

  $ cmake ..
  $ make

  (will generate the executable file 'fit' inside 'build/')

2b) Installation (may need administrator privileges):

  # To install as '/usr/local/bin/fit' (may vary depending on your system):
  $ make install

  # Or to install as '/usr/bin/fit', for instance:
  $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  $ make install

  # Or yet to install as '/opt/gaffitter/bin/fit':
  $ cmake .. -DCMAKE_INSTALL_PREFIX=/gaffitter
  $ make install DESTDIR=/opt
