Mention cmake and fftw as build deps

Closes #556

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2023-09-16 17:12:50 +02:00
parent 9ac9e77be0
commit 5115b3da34
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0

View file

@ -51,7 +51,7 @@ Dependencies for using system libraries:
``` ```
# common # common
sudo pkg install -A dbus libglvnd liblo libsndfile libX11 libXcursor libXext libXrandr python3 sudo pkg install -A cmake dbus fftw libglvnd liblo libsndfile libX11 libXcursor libXext libXrandr python3
# system libraries # system libraries
sudo pkg install -A libarchive libsamplerate jansson speexdsp sudo pkg install -A libarchive libsamplerate jansson speexdsp
``` ```
@ -67,7 +67,7 @@ Dependencies for using system libraries, that is, with `SYSDEPS=true`:
``` ```
# common # common
sudo pacman -S dbus file libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3 sudo pacman -S cmake dbus file fftw libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
# system libraries # system libraries
sudo pacman -S libarchive libsamplerate jansson speexdsp sudo pacman -S libarchive libsamplerate jansson speexdsp
``` ```
@ -76,9 +76,9 @@ Dependencies for vendored libraries:
``` ```
# common # common
sudo pacman -S dbus file libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3 sudo pacman -S cmake dbus file fftw libgl liblo libsndfile libx11 libxcursor libxext libxrandr python3
# nedeed by vendored libraries # nedeed by vendored libraries
sudo pacman -S cmake wget sudo pacman -S wget
``` ```
### Debian ### Debian
@ -87,7 +87,7 @@ Dependencies for using system libraries, that is, with `SYSDEPS=true`:
``` ```
# common # common
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3 sudo apt install cmake libdbus-1-dev libgl1-mesa-dev liblo-dev libfftw3-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
# system libraries # system libraries
sudo apt install libarchive-dev libjansson-dev libsamplerate0-dev libspeexdsp-dev sudo apt install libarchive-dev libjansson-dev libsamplerate0-dev libspeexdsp-dev
``` ```
@ -96,9 +96,9 @@ Dependencies for vendored libraries:
``` ```
# common # common
sudo apt install libdbus-1-dev libgl1-mesa-dev liblo-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3 sudo apt install cmake libdbus-1-dev libgl1-mesa-dev liblo-dev libfftw3-dev libmagic-dev libsndfile1-dev libx11-dev libxcursor-dev libxext-dev libxrandr-dev python3
# nedeed by vendored libraries # nedeed by vendored libraries
sudo apt install cmake wget sudo apt install wget
``` ```
## macOS ## macOS