Skip to content

Installation on Linux

Jean-Christophe Houde edited this page May 20, 2015 · 18 revisions

Tools and Dependencies

CMake

Download and install CMake.

Qt 4.8

In a command line:

  sudo apt-get install libqt4-dev

FFTW

Install FFTW3.3 using the following command:

  sudo apt-get install libfftw3-3 libfftw3-dev

zlib

Install zlib using the following command:

  sudo apt-get install zlibc zlib1g-dev

Building on Linux

  1. Go to your fibercompression directory

    cd fibercompression

  2. Create a new build directory :

    mkdir build

  3. Go to your new build directory :

    cd build

  4. Configure with CMake :

    ccmake ..

    Press 'c' to configure

    Press 'c' again for further configuration

    Press 'g' to generate the build system including the Makefiles

  5. Create executable :

    make

  6. Two executables are created : fibercompression (commandline) and fibercompression_gui (interface)

Clone this wiki locally