Skip to content

Installation on OSX

Jean-Christophe Houde edited this page Jan 5, 2015 · 2 revisions

Tools and Dependencies

CMake

Download and install CMake. The recommended version is currently 2.8.

Qt 4.8

Download Qt4.8 OSX binairies and debug librairies.

FFTW

FFTW can be installed by using Macports. Once Macports is installed, you can install the needed version of FFTW (version 3.3.4) by calling:

sudo port install fftw @3.3.4

Building on OSX

  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