From f92482dc3ca7c7d182d4aaff378095fdca273e7b Mon Sep 17 00:00:00 2001 From: Iron-Wolf Date: Tue, 20 Feb 2018 22:22:53 +0100 Subject: [PATCH] Add install procedure for Qt --- Building-With-Qt.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Building-With-Qt.md b/Building-With-Qt.md index 61c9c20..ad8b28a 100644 --- a/Building-With-Qt.md +++ b/Building-With-Qt.md @@ -10,4 +10,12 @@ Build the DolphinQt2 project in Visual Studio. See [[Building for Windows]] ## Notes * Ensure that Qt5 is installed + * Download the Open Source version of Qt from [Qt official download page](https://www.qt.io/download) or from the [archive website](https://download.qt.io/archive/qt/) for an older version + * You should end up with a **.run** extension file. Make it executable with `chmod +x *.run` + * Launch the executable as root + * Go to the end of the procedure + * Add the location of the bin directories to the PATH environment variable (exemple with V5.10.1) : + ``` bash + echo "PATH=\$PATH:/opt/Qt/Tools/QtCreator/bin:/opt/Qt/5.10.1/gcc/bin" >> ~/.bashrc + ``` * Using -DENABLE_LTO=true will break the Qt build \ No newline at end of file