From 1e3f400ecd6fc1b183156b399040c559a9b3d919 Mon Sep 17 00:00:00 2001 From: 7oxicshadow <7oxicshadow@googlemail.com> Date: Thu, 3 Mar 2016 22:31:21 +0000 Subject: [PATCH] Added the build instructions for optimization --- Building-For-Linux.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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: ```