Install
To build the SWIFT executable you need to have the following dependencies installed,

    * CMake, the cross-platform, open-source make system.
    * Boost, the free peer-reviewed portable C++ source libraries. 

Then,

   1. Unpack the archive,
          *

            tar zxvf swift.tar.gz

   2. Create and enter a new build directory for the out-of-source build,
          *

            mkdir build && cd build

   3. Setup the build directory,
          *

            cmake ..

   4. Optionally: Configure the build,
          *

            ccmake .

   5. Build the executable,
          *

            make

   6. The SWIFT executable now resides in the 'build/swift' subdirectory. Invoke the 'help' command to get information on usage.
          *

            cd swift && ./swift help


