-
Notifications
You must be signed in to change notification settings - Fork 4
Installation on Linux
Jean-Christophe Houde edited this page May 20, 2015
·
18 revisions
Download and install CMake.
In a command line:
sudo apt-get install libqt4-dev
Install FFTW3.3 using the following command:
sudo apt-get install libfftw3-3 libfftw3-dev
Install zlib using the following command:
sudo apt-get install zlibc zlib1g-dev
-
Go to your fibercompression directory
cd fibercompression -
Create a new build directory :
mkdir build -
Go to your new build directory :
cd build -
Configure with CMake :
ccmake ..Press 'c' to configure
Press 'c' again for further configuration
Press 'g' to generate the build system including the Makefiles
-
Create executable :
make -
Two executables are created : fibercompression (commandline) and fibercompression_gui (interface)