From d5d55d0e2b81ccb6c8a44f71306c05a4a9e055c3 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 7 Jan 2016 19:35:46 +0100 Subject: [PATCH] Update Readme.md Added prerequisites for Fedora 22 --- Readme.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Readme.md b/Readme.md index 27cfb39ad..40440894d 100644 --- a/Readme.md +++ b/Readme.md @@ -137,6 +137,16 @@ For Debian Jessie or Stretch: `mkdir build && cd build && cmake ../ && make` +

For Fedora 22

+ +This might also work for Fedora 23. + + - `sudo dnf groupinstall "C Development Tools and Libraries"` + - `sudo dnf install mesa-libGL-devel` + - `sudo dnf install cmake.x86_64 gcc-c++ pkgconfig fftw-devel libusb-devel qt5-qtbase-devel qt5-qtmultimedia-devel qt5-qttools-devel boost-devel pulseaudio alsa-lib-devel` + +`mkdir build && cd build && cmake ../ && make` if no special options +

Known Issues

- The message queuing model supports a n:1 connection to an object (on its input queue) and a 1:1 connection from an object (on its output queue). Assuming a different model can cause insidious disruptions. @@ -242,3 +252,5 @@ The release type can be specified with the `-DBUILD_TYPE` cmake option. It takes You can specify whether or not you want to see debug messages printed out to the console with the `-DDEBUG_OUTPUT` cmake option: - `OFF` (default): no debug output - `ON`: debug output + +Tou can add `-Wno-dev` on the `cmake` command line to avoid warnings.