From 7654ae36f760ad3ad61852c2bf2c6883e473149c Mon Sep 17 00:00:00 2001 From: DoctorMacc <20743703+DoctorMacc@users.noreply.github.com> Date: Wed, 25 Jul 2018 21:23:27 -0400 Subject: [PATCH] Remove obsolete information (E.G. that Qt is optional when building a GUI). --- Building-With-Qt.md | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/Building-With-Qt.md b/Building-With-Qt.md index 37b92cc..6b28602 100644 --- a/Building-With-Qt.md +++ b/Building-With-Qt.md @@ -1,11 +1,4 @@ -## Linux and macOS - -Use -DENABLE_QT2 when calling CMake: -`cmake .. -DENABLE_QT2=true` - -## Windows - -Build the DolphinQt2 project in Visual Studio. See [[Building for Windows]] +As of Dolphin 5.0-8279, Qt is the only GUI available for desktop platforms. ## Notes @@ -15,16 +8,16 @@ Build the DolphinQt2 project in Visual Studio. See [[Building for Windows]] * You should end up with a **.run** extension file. Make it executable with `chmod +x *.run` * Launch the executable * Go to the end of the procedure - * Add the location of the bin directories to the PATH environment variable (exemple with V5.10.1) : + * Add the location of the bin directories to the PATH environment variable (exemple with V5.11.1) : ``` bash - echo "PATH=\$PATH:Qt/Tools/QtCreator/bin:Qt/5.10.1/gcc/bin" >> ~/.bashrc + echo "PATH=\$PATH:Qt/Tools/QtCreator/bin:Qt/5.11.1/gcc/bin" >> ~/.bashrc ``` * Build dolphin with the **Qt5Gui_DIR** env variable set on the Qt lib location : ``` bash - export Qt5Gui_DIR=Qt/5.10.1/gcc/lib + export Qt5Gui_DIR=Qt/5.11.1/gcc/lib ``` * Finally, launch dolphin with the **LD_LIBRARY_PATH** set on the same folder. In one command : ``` bash - env LD_LIBRARY_PATH=Qt/5.10.1/gcc/lib dolphin-emu-qt2 + env LD_LIBRARY_PATH=Qt/5.11.1/gcc/lib dolphin-emu-qt2 ``` * Using -DENABLE_LTO=true will break the Qt build \ No newline at end of file