diff --git a/Building-For-Linux.md b/Building-For-Linux.md index d4a3910..15d50d0 100644 --- a/Building-For-Linux.md +++ b/Building-For-Linux.md @@ -51,6 +51,15 @@ sudo make install (currently doesn't work, needs to be fixed) ``` Optionally, you can use "cmake -i .." to adjust various options (e.g. disable the Qt GUI). +### Building Citra (Optimized): + +``` +mkdir build && cd build +cmake .. -DCMAKE_BUILD_TYPE=Release +make +sudo make install (currently doesn't work, needs to be fixed) +``` + ### Building with debug symbols: ```