Fixed fedora package name for aac and cmake option for enabling ffmpeg.

aranyasinha 2019-04-08 23:44:11 +05:30
parent 9520eccd75
commit 72b49b23bf

@ -17,7 +17,7 @@ You'll need to download and install the following to build Citra:
- FDK-AAC - FDK-AAC
* Deb: `apt-get install libfdk-aac-dev` * Deb: `apt-get install libfdk-aac-dev`
* Arch: `pacman -S libfdk-aac-dev` * Arch: `pacman -S libfdk-aac-dev`
* Fedora: `dnf install fdk-aac-free-devel` * Fedora: `dnf install fdk-aac-devel`
- [FFMPEG](https://ffmpeg.org/download.html#build-linux) 4.0+ - [FFMPEG](https://ffmpeg.org/download.html#build-linux) 4.0+
* Compiler: GCC or Clang. You only need one of these two: * Compiler: GCC or Clang. You only need one of these two:
* GCC 7.0+. * GCC 7.0+.
@ -53,7 +53,7 @@ cmake ../
make make
sudo make install (optional) sudo make install (optional)
``` ```
- To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG` instead. - To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG=ON` instead.
Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI). Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI).
@ -78,7 +78,7 @@ cmake .. -DCMAKE_BUILD_TYPE=Release
make make
sudo make install (optional) sudo make install (optional)
``` ```
- To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG` instead. - To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG=ON` instead.
### Building with debug symbols: ### Building with debug symbols: